Forum Discussion
JamesBurke
2 years agoHelper III
Rankx Ignore Blanks
Hi all , I have a condional Column that returns the device names connected to a specifc customer For example Store Name Usages Device 1 12 Device 2 14 14 Device 4 19 ...
- Anonymous2 years ago
Hi JamesBurke ,
Sorry, please change the DAX into this:Rank = VAR _RANK = RANKX(FILTER(ALL('Table'), 'Table'[Store Name] <> BLANK()), [Measure],,DESC,Dense) RETURN IF( MAX('Table'[Store Name]) <> BLANK(), _RANK, BLANK() )The final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi JamesBurke ,
Sorry, please change the DAX into this:
Rank =
VAR _RANK =
RANKX(FILTER(ALL('Table'), 'Table'[Store Name] <> BLANK()), [Measure],,DESC,Dense)
RETURN
IF(
MAX('Table'[Store Name]) <> BLANK(),
_RANK,
BLANK()
)
The final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
madison13g
1 year agoRegular Visitor
What is the [Measure] portion in this situation?