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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
water-guy-5
Helper III
Helper III

Request: Base footer in table to how you are displaying the data, not always 'Total'

If this has already been requested then please direct me to it but I would like PowerBI to give more options in the visualization of table data.

If I am sorting by Average, Minumim, Maxmimum, or Count, then 'Total' should change too. It's misleading for the viewer. 'Total' should only be displayed if it's the Sum.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @water-guy-5 ,

You can use HASONEVALUE to resolve.

I created some data:

vyangliumsft_0-1636423030693.png

Here are the steps you can follow:

1. Create measure.

Calculate Sum =
var Table1=SUMMARIZE('Table','Table'[Date],"_value",[Measure_Sum])
return IF(HASONEVALUE('Table'[Date]),[Measure_Sum],SUMX(Table1,[_value]))

2. Result:

vyangliumsft_1-1636423030694.png

 

Best Regards,

Liu Yang

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

2 REPLIES 2
Anonymous
Not applicable

Hi  @water-guy-5 ,

You can use HASONEVALUE to resolve.

I created some data:

vyangliumsft_0-1636423030693.png

Here are the steps you can follow:

1. Create measure.

Calculate Sum =
var Table1=SUMMARIZE('Table','Table'[Date],"_value",[Measure_Sum])
return IF(HASONEVALUE('Table'[Date]),[Measure_Sum],SUMX(Table1,[_value]))

2. Result:

vyangliumsft_1-1636423030694.png

 

Best Regards,

Liu Yang

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

PaulDBrown
Community Champion
Community Champion

Normally you would use ISINSCOPE to filter out totals. Something along the lines of 

Filter out totals = IF(ISINSCOPE (Table[Column]), [measure])

 

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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