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
bml123
Post Patron
Post Patron

Totals in table not showing

I have a measure like this in a table where Amount is a column and Measure1 is measure

 

Measure = if([Measure1]="Yes",CALCULATE(SUM([Amount])))

 

It's not showing the Totals in the table, Totals is blank

 

I tried CALCULATE(SUM([Amount]),[Measure1]="Yes")

but it's giving error-A function 'PLACEHOLDER' has been used in a True/False expression that is used as a table filter expression. This is not allowed.

 

How can I correct it?

1 ACCEPTED SOLUTION

Hi @bml123 ,

 

I think you can try this code to create a measure.

Measure2 = CALCULATE(SUM('Table'[Difference])+0,FILTER('Table',[Measure1] = "Yes"))

Result is as below.

RicoZhou_0-1656495789221.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

8 REPLIES 8
SpartaBI
Community Champion
Community Champion

@bml123 You should stick with V1: if([Measure1]="Yes",CALCULATE(SUM([Amount]))) but you need to see why this measure is not equal to "Yes" fot the total and fix it. If you can't then maybe best to share a sample file or data (not screenshots)

HI @SpartaBI 

I have data like this

 

CurrentNext MonthDifference% changeMeasure1
100604040.00%No
50302040.00%No
2019.750.251.25%Yes
3029.50.51.67%Yes
60204066.67%No

 

where Measure1 is a measure to flag if the percentage is within -2% to 2%. I want to add the

'Difference 'column where meaure 1 is Yes. It's showing the numbers in the table but totals is 0.

Here is the desired output

CurrentNext MonthDifference% changeMeasure1Measure
100604040.00%No0
50302040.00%No0
2019.750.251.25%Yes0.25
3029.50.51.67%Yes0.5
60204066.67%No0
Total    0.75

Hi @bml123 ,

 

I think you can try this code to create a measure.

Measure2 = CALCULATE(SUM('Table'[Difference])+0,FILTER('Table',[Measure1] = "Yes"))

Result is as below.

RicoZhou_0-1656495789221.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

SpartaBI
Community Champion
Community Champion

@bml123 ok , so you need to wrap your measure with SUMX.
Try first something like:
SUMX('Table', if([Measure1]="Yes",CALCULATE(SUM([Amount]))))

Hi @SpartaBI 

It's not the sum of Amount I want, it's the sum of Difference column.
As per your suggestion, I tried

SUMX('Table', if([Measure1]="Yes",Difference))

It didn't work, it gave the total of all the data ignoring Measure1=Yes

SpartaBI
Community Champion
Community Champion

@bml123 can you maybe share your file?

Hi @SpartaBI 

Sorry, can't share the file as it has confidential data.

I have given you the sample data above.

SpartaBI
Community Champion
Community Champion

@bml123 I will PM you

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.