Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anu
Frequent Visitor

Calculate difference between rows

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])

 

 

all2.JPGalwarurban.JPG

 

How can I calculate difference based on area in whole table.

 

PFA.

 

Please help.

2 ACCEPTED SOLUTIONS
Zubair_Muhammad
Community Champion
Community Champion

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] )

View solution in original post

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

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.! Smiley Happy

 

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!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.