Forum Discussion
Rank
- 7 years ago
Hi PMF99
please see the below
=VAR m = Resign_Append[meter] RETURN RANKX( FILTER(Resign_Append, Resign_Append[meter] = m ), Resign_Append[CED YYYY MM],, ASC )
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi PMF99,
Try,
=VAR m = Resign_Append[Renewal Date] RETURN RANKX( FILTER(Resign_Append, Resign_Append[Renewal Date] = m ), Resign_Append[CED YYYY MM],, ASC )
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Mariusz,
Think we're almost there...
Here is my code....
=VAR m = Resign_Append[CED YYYY MM]
RETURN
RANKX(
FILTER(Resign_Append,
Resign_Append[CED YYYY MM] = m
),
Resign_Append[CED YYYY MM],,
ASC
)
And here is the pivot results under Resign Order
Getting only '1s'
Any ideas? I would expect meter 1000364810 to have a resigner order for CED YYYY MM of 1, 2, 3, 4, 5,
- Mariusz7 years agoCommunity Champion
Hi PMF99
please see the below
=VAR m = Resign_Append[meter] RETURN RANKX( FILTER(Resign_Append, Resign_Append[meter] = m ), Resign_Append[CED YYYY MM],, ASC )
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- PMF997 years agoRegular Visitor
Perfect! Thats the answer!
I've ticked the thumbs up box.
Is there another 'Accept' button?