Forum Discussion
SAIRAMAKANTH
1 year agoRegular Visitor
Display Rank on Column chart
HI Can anyone tell me how to display rank on power bi column chart by value wise
SAIRAMAKANTH
1 year agoRegular Visitor
There is column chart in the image i need to show rank on top according to the sales data danextian
danextian
1 year agoSuper User
Hi SAIRAMAKANTH
You can create a measure and use this as the data label - https://community.fabric.microsoft.com/t5/Power-BI-Community-Blog/Custom-Data-Labels-in-Power-BI/ba-p/4354821 . Example:
rank measure =
RANKX ( ALL ( table[column] ), [sales measure],, desc, DENSE )
If this doesn't work, pleasen provide a workable sample data (not an image) as stated in my initial reply.