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.

avatar user

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)