Forum Discussion
Anonymous
7 years agoNot applicable
Rank Orders based on Date
Hi all, I have the following dilemma: I am trying to create a calculated column that would show me (based on the date of the order), the rank of that order for the specific customer. Example...
- 7 years ago
Anonymous Please try this as a "New Column"
Rank = RANKX(FILTER(Test114Rnk,Test114Rnk[Customer]=EARLIER(Test114Rnk[Customer])),[Date],,ASC,Dense)
PattemManohar
7 years agoCommunity Champion
Anonymous Please try this as a "New Column"
Rank = RANKX(FILTER(Test114Rnk,Test114Rnk[Customer]=EARLIER(Test114Rnk[Customer])),[Date],,ASC,Dense)
ozne99
6 years agoFrequent Visitor
Is it possible for this to be dynamic, based on the date filter? For example, how do we get it to recalculate the rank of the customer using a date slicer?