Forum Discussion
tecumseh
3 years agoResolver III
DAX Create Summary Table With Max Date
Hi all, How can I create a summary table from a fact table that return only the Row with the Max Date for each set of criteria? Here is what I have so far, but I I haven't been able to get just t...
- 3 years ago
Data Summary = var a = SUMMARIZE( Data, [Co], [Division], [Region], [District], [Center], [Date], [Amount] ) RETURN MAXX(a,[Date])
VilmarSch
3 years agoPost Partisan
Veja se ajuda
Tabela2 =
SUMMARIZE(
Tabela,
[Co],
[Division],
[Region],
[District],
[Center],
"Date", MAX(Tabela[Date])
)