Forum Discussion
gmasta1129
Resolver I
1 year agoFormula for Rank (based on a measure)
Hello, I created a table in Power BI that contains the following columns + one measure 1. Run Date --> Column 2. Facility Code --> Column 3. Facility Name --> Column 4. Overall Score --> Meas...
- 1 year ago
Hi gmasta1129 ,
Please try if this gives you the desired result that you are looking for. Thanks
RankX =
RANKX(
ALL('Table'[Facility Code] , 'Table'[Facility Name] , 'Table'[Run Date])
[Overall Score],
,
DESC,
DENSE
)
SundarRaj
Super User
1 year agoHi gmasta1129 ,
Please try if this gives you the desired result that you are looking for. Thanks
RankX =
RANKX(
ALL('Table'[Facility Code] , 'Table'[Facility Name] , 'Table'[Run Date])
[Overall Score],
,
DESC,
DENSE
)
- gmasta11291 year ago
Resolver I
The formula worked.
Thank you for your help! 🙂