Forum Discussion
bssienes
3 years agoRegular Visitor
RANX in ascending order
Hi All, In my table I have companyName and featureName columns. I want to count rows in the table and rank based on featureName. This worked for me when I did ranking in descending order. Using t...
wdx223_Daniel
Community Champion
3 years agoFeatureRank = RANKX(
FILTER(ALL('Features'[FeatureName]),CALCULATE(COUNTROWS('Features'))),
CALCULATE(COUNTROWS('Features')),
,
ASC
)