Forum Discussion
adnyesh
9 years agoRegular Visitor
Change Rank Dynamically by user selected Filter
I am using a RANKX function in which i am passing the following statement Rank = RANKX(FILTER(ParentData,ParentData[Customer]="XYZ"),VALUE(ParentData[TurnAroundTime]),,ASC,Skip) This is prov...
- 9 years ago
Try to add an index column and create a measure as below.
RANK = MINX ( FILTER ( SELECTCOLUMNS ( ALLSELECTED ( ParentData ), "index", ParentData[Index], "rank", RANKX ( ALLSELECTED ( ParentData ), ParentData[Turn Around Time],, DESC, DENSE ) ), [index] = MAX ( ParentData[Index] ) ), [rank] )
Sushmach109
8 years agoHelper I
Hi Team,
For Large data, this measure is not working .
For small data it is working.
May I know any similar formula for column instead of measure (OR) any similar formula that can be used in query editor?