Forum Discussion
sfn
8 years agoFrequent Visitor
Normalizing Periods from Dates
Hi, Does anyone have experience with normalizing date ranges to represent periods starting at n for a set of categories? I have a lot of data on hours spent to execute specific projects, and ...
- 8 years ago
so you basically want to rank the dates for each category
try this calculated columnColumn = VAR Cat = Table[Category] RETURN RANKX(FILTER(Table,Table[Category]=Cat),FIRSTDATE(Table[Date]),,ASC)
Stachu
8 years agoCommunity Champion
so you basically want to rank the dates for each category
try this calculated column
Column = VAR Cat = Table[Category] RETURN RANKX(FILTER(Table,Table[Category]=Cat),FIRSTDATE(Table[Date]),,ASC)
sfn
8 years agoFrequent Visitor
Yes, this resulted in what I was looking for - thanks!