Forum Discussion
Create grouped table from date field
- 5 years ago
Please use this table expression.
NewTable =
ADDCOLUMNS (
DISTINCT ( Team[Name] ),
"Date",
CALCULATE (
LASTNONBLANK (
Team[Date],
MIN ( Team[Date] )
)
),
"Team",
CALCULATE (
LASTNONBLANKVALUE (
Team[Date],
MIN ( Team[Team] )
)
)
)Pat
- 5 years ago
Table=FILTER(SampleData,SampleData[Date]=CALCULATE(MAX(SampleData[Date]),ALLEXCEPT(SampleData,SampleData[Name])))
Table=FILTER(SampleData,SampleData[Date]=CALCULATE(MAX(SampleData[Date]),ALLEXCEPT(SampleData,SampleData[Name])))
- brief0015 years ago
Helper II
Thank you for also posting this answer. The formula works differently from the answer given earlier. But the result is the same. And I also understand this formula now that I read it.