Forum Discussion
Anonymous
3 years agoNot applicable
Agg after recent date
Hi everyone, I have this table below that is connect to a Calendar Table. Date ID Column1 Column2 31/07/2021 A 160 1060 31/08/2021 A 200 1170 30/09/2021 A 175 1300 ...
- 3 years ago
Hi Anonymous
Please try
Card1 =
SUMX (
VALUES ( 'Table'[ID] ),
MAXX ( CALCULATETABLE ( TOPN ( 1, 'Table', 'Table'[Date] ) ), 'Table'[Column1] )
)