Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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 !!??
Solved! Go to Solution.
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
Hi @Anonymous,
Could you please mark the proper answers as solutions?
Best Regards,
Dale
using direct topn under visual card is also the best way...think so!!
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
@Anonymous - please post sample data
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
| User | Count |
|---|---|
| 23 | |
| 21 | |
| 20 | |
| 20 | |
| 11 |
| User | Count |
|---|---|
| 62 | |
| 55 | |
| 47 | |
| 44 | |
| 37 |