Forum Discussion
Anonymous
2 years agoNot applicable
undefined
i have one column name is owner name and two measures owner_classification,no of mol vessels. how to rank bases on no of mol vessesl?
manikumar34
2 years agoSolution Sage
RANKX(ALL('Table'[owner name]),[no of mol vessels],,DESC ,Dense)
directly taken no of mol vessels as mentions as measure, if it is a column do with an aggreate function as below
RANKX(ALL('Table'[owner name]),CALCULATE(SUM(Table[no of mol vessels])),,DESC ,Dense)
directly taken no of mol vessels as mentions as measure, if it is a column do with an aggreate function as below
RANKX(ALL('Table'[owner name]),CALCULATE(SUM(Table[no of mol vessels])),,DESC ,Dense)
Anonymous
2 years agoNot applicable
Let me try it and let you know