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 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi,
I am wanting to create a table visual (as per below) for Top 5 series with measures. I have been successful except for 'most active state' calculation (refer circled). Below is the data used to summarise the table. It takes top 5 series (based on qty), total quantity for that series, most active state quantity, and the most active state (based on quantity).
I have tried using Maxx to bring most active state without luck. Please help
| Series | State | Volume |
| A | NSW | 21 |
| A | SA | 60 |
| A | VIC | 7 |
| B | VIC | 50 |
| C | NSW | 10 |
| D | NSW | 7 |
| E | NSW | 22 |
| E | QLD | 177 |
| F | VIC | 19 |
| G | NSW | 50 |
| H | NSW | 10 |
| I | NSW | 19 |
| I | VIC | 1950 |
| J | NSW | 820 |
| J | VIC | 7 |
| K | QLD | 11 |
| L | NSW | 14 |
| M | SA | 8 |
| N | NSW | 16 |
| N | VIC | 155 |
Solved! Go to Solution.
Give this a try.
Most Active State =
FIRSTNONBLANK (
TOPN ( 1, VALUES ( 'Table'[State] ), CALCULATE ( SUM ( 'Table'[Volume] ) ) ),
1
)
Thanks worked a treat
Give this a try.
Most Active State =
FIRSTNONBLANK (
TOPN ( 1, VALUES ( 'Table'[State] ), CALCULATE ( SUM ( 'Table'[Volume] ) ) ),
1
)
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 26 | |
| 22 | |
| 22 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 35 | |
| 29 | |
| 21 | |
| 19 | |
| 17 |