Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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)
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)
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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 108 | |
| 39 | |
| 33 | |
| 26 |