Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi,
I need to calculate difference between rows based on max value for that column in a specific area.
I can calculate difference between rows based on max value for that column (votes achieved) but not on specific area(constituency name). I have used below forumla for same.
Measure 2 = CALCULATE(MAX(bis_candidates[bis_votesachieved]), ALLSELECTED(bis_candidates)) - MAX(bis_candidates[bis_votesachieved])
How can I calculate difference based on area in whole table.
PFA.
Please help.
Solved! Go to Solution.
Hi @Anu
Try this MEASURE
Measure =
VAR Max4Constituency =
CALCULATE (
MAX ( bis_candidates[bis_votesachieved] ),
ALLEXCEPT ( bis_candidates, bis_candidates[ConstituencyName] )
)
RETURN
Max4Constituency - SELECTEDVALUE ( bis_candidates[bis_votesachieved] )
Yes I believe this feature doesn't exist currently. But hopefully soon it will be available. Each month new updates are released
You can support this idea by VOTING for it
BOOKs provide an organized source of LEARNING. I have all these books ![]()
Learn to Write DAX: A practical guide to learning Power Pivot for Excel and Power BI
Hi @Anu
Try this MEASURE
Measure =
VAR Max4Constituency =
CALCULATE (
MAX ( bis_candidates[bis_votesachieved] ),
ALLEXCEPT ( bis_candidates, bis_candidates[ConstituencyName] )
)
RETURN
Max4Constituency - SELECTEDVALUE ( bis_candidates[bis_votesachieved] )
Thanks @Zubair_Muhammad It worked.! ![]()
I need to further do ascending sorting on consituency no. and descending sorting on votes achieved. I researched and found that multiple sorting on columns can't be applied in power BI table. Is it so?
I am new to Power BI. Can you suggest from where should I learn making formula like these?
Have a great day!
Yes I believe this feature doesn't exist currently. But hopefully soon it will be available. Each month new updates are released
You can support this idea by VOTING for it
BOOKs provide an organized source of LEARNING. I have all these books ![]()
Learn to Write DAX: A practical guide to learning Power Pivot for Excel and Power BI
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 37 | |
| 35 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 58 | |
| 29 | |
| 27 | |
| 25 |