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 Anonymous,
You can add a column and the code below.
Rank Meter by End Date =
VAR m = Table1[Meter]
RETURN
RANKX(
FILTER(
Table1,
Table1[Meter] = m
),
Table1[End Date],,
ASC
)
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Many thanks Mariusz;
I tried your code;
=VAR m = Resign_Append[Renewal Date]
RETURN
RANKX(
FILTER(Resign_Append,
Resign_Append[CED YYYY MM] = m
),
Resign_Append[CED YYYY MM],,
ASC
)
And here's the error I've got;
DAX comparison operations do not support comparing values of type Text with values of type Date. Consider using the VALUE or FORMAT function to convert one of the values.
What have I done wrong?
Thanks
Peter