Forum Discussion
Kumar11109
9 years agoHelper IV
Tagging Videos For each session
I have a data set in which I need to tag resources used in a session, starting from 1. I am attaching an image for a sample of my data set. Please help me...
- 9 years ago
Check if RANKX Function works.
Rank = RANKX ( FILTER ( Table1, Table1[Session ID] = EARLIER ( Table1[Session ID] ) ), Table1[Start Time], , ASC, SKIP ) - 9 years ago
RANKX worked, thanks.
v-chuncz-msft
9 years agoCommunity Support
Check if RANKX Function works.
Rank =
RANKX (
FILTER ( Table1, Table1[Session ID] = EARLIER ( Table1[Session ID] ) ),
Table1[Start Time],
,
ASC,
SKIP
)
Kumar11109
9 years agoHelper IV
RANKX worked, thanks.