The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I am trying not to show the anything for the grouped matrix total since it doesn't make sense. when I drill down, the info i want is there. Just need to remove the ones from the grouped total. There's a lot of data under there, so I want to keep grouped.
Solved! Go to Solution.
@OCBB_SFAFPandA , Use isinscope
Switch(true(),
isinscope(table[Store]) ,[Measure] , //Lower level
isinscope(table[group], blank())
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/
Hi, @OCBB_SFAFPandA
Please check if this tutotial could help.
Use IsInScope to get the right hierarchy level in DAX
Best Regards,
Community Support Team _ Eason
Hi, @OCBB_SFAFPandA
Please check if this tutotial could help.
Use IsInScope to get the right hierarchy level in DAX
Best Regards,
Community Support Team _ Eason
@OCBB_SFAFPandA , Use isinscope
Switch(true(),
isinscope(table[Store]) ,[Measure] , //Lower level
isinscope(table[group], blank())
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/