Forum Discussion
ChumaAmako
8 years agoHelper I
Ranking with Filters
Hi Team, I must confess I am still a newbie to DAX, I have a Table with which I wish to rank Visit Time based on Date and Staff ID. It looks like this: I will like to have a Cal...
- 8 years ago
Follow the below steps
Create a New Calculated Column Datasheet
DateTime = Table3[Visit Date] &" " &Table3[Visit Time]
Rank = RANKX(ALL('Table3'),'Table3'[DateTime],,ASC)Regards,
Chetan K
chethan
8 years agoResolver III
Follow the below steps
Create a New Calculated Column Datasheet
DateTime = Table3[Visit Date] &" " &Table3[Visit Time]
Rank = RANKX(ALL('Table3'),'Table3'[DateTime],,ASC)
Regards,
Chetan K