Forum Discussion
Anonymous
7 years agoNot applicable
Top Month
find top month based on count of other value .. Eg:august has 5k records sept has 10k records.. How to show sept in card visual !!??
v-jiascu-msft
7 years agoMicrosoft Employee
Hi Anonymous,
Please share a dummy sample. You also can modify the measure below to achieve your goal.
top1 =
MAXX (
TOPN (
1,
SUMMARIZE (
'FactSales',
DimDate[YearMonth],
"AmountOfRecords", COUNTROWS ( FactSales )
),
[AmountOfRecords], DESC
),
[YearMonth]
)
Best Regards,
Dale
