Forum Discussion
Sajid02
Helper I
3 years agoHow to get ranking
Hi Folks, Need help on the ranking formula . As per the need :- 1. We need to show ranking as per Product and price from higher to lower i.e higher value should be 1 and then goes on .... 2. We...
mh2587
Super User
3 years agorank = RANKX( FILTER( data, AND( data[Product] = EARLIER(data[Product]), data[City] = EARLIER(data[City]))), data[Price], , Dense)
--Try this one hope it works