Forum Discussion
Anonymous
4 years agoNot applicable
Max date for each year
Hello All, Need some help on the below issues. I have the below tables with me and want to find out the max date for each season(1 season is of 1 year) and rest all rows should be blank for the r...
- 4 years ago
Try Create a calculated column
Max Val = Var Season = 'Table'[Season] Var MaxDate = CALCULATE(MAX('Table'[Date]),FILTER('Table','Table'[Season]=Season)) RETURN IF('Table'[Season]=Season && 'Table'[Date]=MaxDate,MaxDate,BLANK()) - 4 years ago
ribisht17
Super User
4 years ago