Forum Discussion
bob57
3 years agoHelper IV
Calculated column and RANKX
Hello, I need to develop a calculated column to rank the Timestamp by EventId. The desired result would look like this: Thank you! Bob
- 3 years ago
Timestamp Rank=RANKX(FILTER(Table,Table[EventId]=EARLIER(Table[EventId])),'Table'[Timestamp],,ASC)
wdx223_Daniel
3 years agoCommunity Champion
Timestamp Rank=RANKX(FILTER(Table,Table[EventId]=EARLIER(Table[EventId])),'Table'[Timestamp],,ASC)
- bob573 years agoHelper IV
Thank you so much! Now time for me to study and understand.
Bob