Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

pb version

Hello everyone,

I got one more problem

 

I got one data table like this :

No      Archived       Amount        Amount Arch     Measure

Ord1   NO                10€               0€                       10€

Ord2   NO                10€               0€                       10€

Ord2   YES                0€                5€                        5€

Ord3   YES                0€                12€                      12€

Total                          20€              17€                      32€

 

Don't tell me why there are several orders which are NO and Archived at the both time this is a fact. I don't know why.

So, I don't want the order2 archived on the total.

 

Today I made a table like this :

No      Amount        Amount Arch     Measure

Ord1   10€               0€                       10€

Ord2   10€               5€                       10€

Ord3   0€                12€                      12€

Total    20€              17€                      20€

With measure = If amount=0 ; amount arch ; amount) but the total is false (it is not what I want).

 

Do you have an issue about that?

Thanks for all,

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi bapt69,

 

To achieve your requirememt, you can create a calculate column instead using DAX below:

Column = IF(Table1[Amount] = 0, Table1[Amount Arch], Table1[Amount])

11.PNG 

 

Regards,

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi bapt69,

 

To achieve your requirememt, you can create a calculate column instead using DAX below:

Column = IF(Table1[Amount] = 0, Table1[Amount Arch], Table1[Amount])

11.PNG 

 

Regards,

Jimmy Tao

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.