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
benP
Frequent Visitor

Total showing as blank

I Have the following measure: 

 

Sum of Top Performers Consumption =
CALCULATE (
SUM( 'Billing Data'[Consumption (kWh)] ),
FILTER ( 'Billing Data', SUM('Billing Data' [Fifteenth Percentile Variance]) > 0 )
)
 
This works and shows the correct data in a tabular view. However if I either turn the totals on for that table or sum it in a card visual it is showing as blank.
 
Anyone have any similar experiences?
 
Thanks,
Ben 
1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @benP ,

I reproduced your question and met the same issue. In your measure, ‘SUM('Billing Data' [Fifteenth Percentile Variance]) > 0’ returns a logical value. And ‘False’ is not calculated by default. So, the corresponding values are blank.

Total showing as blank 2.PNG

You can change your measure like below and then the issue can be solved.

Sum of Top Performers Consumption 2 =
CALCULATE (
    SUM ( 'Billing Data'[Consumption (kWh)] ),
    FILTER ( 'Billing Data', 'Billing Data'[Fifteenth Percentile Variance] > 0 )
)

Total showing as blank.PNG

Best Regards,

Icey

 

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

1 REPLY 1
Icey
Community Support
Community Support

Hi @benP ,

I reproduced your question and met the same issue. In your measure, ‘SUM('Billing Data' [Fifteenth Percentile Variance]) > 0’ returns a logical value. And ‘False’ is not calculated by default. So, the corresponding values are blank.

Total showing as blank 2.PNG

You can change your measure like below and then the issue can be solved.

Sum of Top Performers Consumption 2 =
CALCULATE (
    SUM ( 'Billing Data'[Consumption (kWh)] ),
    FILTER ( 'Billing Data', 'Billing Data'[Fifteenth Percentile Variance] > 0 )
)

Total showing as blank.PNG

Best Regards,

Icey

 

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

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.