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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
cosminc
Post Partisan
Post Partisan

index table in DAX based on Sales

Hi all,

i have a simple table like below and i need to add an index based on descending order of Sales

Salesmen   Sales

George          10

Ana                50

Jane               30

 

and need

 

Salesmen   Sales    Index

George          10         3

Ana                50         1

Jane               30          2

 

 

can you help me with this?

Thanks,

Cosmin

1 ACCEPTED SOLUTION
PattemManohar
Community Champion
Community Champion

@cosminc  Please try this as a New Column

 

Index = RANKX(Test294Rank,Test294Rank[Sales],,DESC)

image.png





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

Proud to be a PBI Community Champion




View solution in original post

2 REPLIES 2
PattemManohar
Community Champion
Community Champion

@cosminc  Please try this as a New Column

 

Index = RANKX(Test294Rank,Test294Rank[Sales],,DESC)

image.png





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

Proud to be a PBI Community Champion




Thanks!

Cosmin

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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