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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors