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 have a table where my Level 1 is > to my Level 2:
In my pbi I need to build a matrix visual where
1) At the Level 1 I need to return the MAX of the column value for the LEVEL 2
2) At Level 2 just returns the value ONLY of LEVEL 2
Meaning, something like that:
Can ISFILTERED help me?
Thank you for your help!
Solved! Go to Solution.
@MCacc , Based on what I got
You need a measure like
Maxx(Values(Table[Level2]), calculate(Sum(Table[Value])))
Amazing! It works just fine
Thank you!