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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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