This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I am a bit confuse about the use of a variable and the use of a measure in a measure:
Here i want to have the difference between max and min per category (a and b) and afterwards sum the differences.
example:
a 2
a 1
b 3
b 10
Normal max-min = 10-1 =9
per cat : a = 2-1 =1
b = 10-3 =7
Sum a +b = 8 -----> this is what i need i a card visual
I tried to put everyting in one measure and it does not work:
Solved! Go to Solution.
HI @Anonymous,
You can use following measure if it works:
Measure =
SUMX (
SUMMARIZE (
Table,
[Type],
"Max", MAX ( Table[Value] ),
"Min", MIN ( Table[Value] )
),
[Max] - [Min]
)
Regards,
Xiaoxin Sheng
Works, very nice measure tnx!!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 28 | |
| 23 | |
| 19 |