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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Zakaria_1980
Post Patron
Post Patron

need support

Dears,

 

i've a table with multiple Cities which are not sorted and next to each city some versions . i would like to add another column where whenever the version is the highest one in that city, he will put 1 and for others he will put 0.

 

tbl will looks like this:

 

CityVersion
City1TGF V1.0
City1TGF V6.0
City1TGF V3.0
City2TGF V1.0
City2TGF V1.0
City2 
City2 TGF V4.0
City3 TGF V2.0
City5 TGF V1.0
1 ACCEPTED SOLUTION

@Zakaria_1980 

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
ryan_mayu
Super User
Super User

@Zakaria_1980 

maybe you can try to create two columns.

Column = 
var v=right('Table'[Version],3)
return if(v="",0,int(v))

Column 2 = 
VAR _max=CALCULATE(max('Table'[Column]),ALLEXCEPT('Table','Table'[City]))
return if('Table'[Column]=_max,1,0)

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




This is what i'm getting as error, could you help me please

 

 

Zakaria_1980_0-1628069624752.png

 

@Zakaria_1980 

maybe try 

Column 2 = 
VAR _max=CALCULATE(max(sheet1(var v]),ALLEXCEPT('sheet1','sheet1'[project name]))
return if('sheet1'[var v]=_max,1,0)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




i tried it but it doesn't work. could you apply it in your laptop and share with me the correct dormula to put please.

thanks in advance

@Zakaria_1980 

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors