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 the Max Date.
Data Summary =
SUMMARIZE(
Data,
Data[Co],
Data[Division],
Data[Region],
Data[District],
Data[Center],
Data[Date],
Data[Amount]
)
Thanks
Thanks
-w
Data Summary = var a = SUMMARIZE( Data, [Co], [Division], [Region], [District], [Center], [Date], [Amount] ) RETURN MAXX(a,[Date])