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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
gksdude9192
Frequent Visitor

Custom Total for Matrix Visual

Is there a way to show the Total 5 instead of 7 ?

gksdude9192_0-1724322959013.png

 

1 ACCEPTED SOLUTION
gksdude9192
Frequent Visitor

By using Hasonevalue i got the solution.

Measure = 
var _all = SUM(Table[Value])
var _filtered = CALCULATE(SUM(Table[Value]), NOT Table[Category] IN {"F","G"})

RETURN
            IF(HASONEVALUE(Table[Category]),_all,_filtered)

View solution in original post

2 REPLIES 2
gksdude9192
Frequent Visitor

By using Hasonevalue i got the solution.

Measure = 
var _all = SUM(Table[Value])
var _filtered = CALCULATE(SUM(Table[Value]), NOT Table[Category] IN {"F","G"})

RETURN
            IF(HASONEVALUE(Table[Category]),_all,_filtered)
SamWiseOwl
Super User
Super User

Hi @gksdude9192 

You can create a measure, this can show a different value for the row than total.

For example:
Swap Total =
If(
IsFiltered(table[Category])

,Sum(table[Value])

,5
)

That will show the sum of VALUE on the rows and the number 5 on the total.


If you are happy with this answer please mark as a solution for others to find !

Kudos are always appreciated! Check out our free Power BI video courses.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.