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
Hi good day can someone help me on my maeasure, on my table with column Date, BP's, laborType. i want to get the highest count of Labortype on what date.
From my table
DESIRED RESULT OF MEASURE - Only the Date with the highest count
Thank you
Solved! Go to Solution.
Hi @AllanBerces .
Create a virtual summarized table of each date and the value. Pick the one with the highest value using TopN and use that top date as a filter
Max Value Date =
VAR TopDate =
CALCULATE (
MAXX (
TOPN (
1,
ADDCOLUMNS (
SUMMARIZE ( ALLSELECTED ( Dates ), Dates[Date] ),
"@value", [Total Transactions] -- or your count measure
),
[@value], DESC
),
[Date]
),
ALLSELECTED ()
)
RETURN
CALCULATE ( [Total Transactions], KEEPFILTERS ( Dates[Date] = TopDate ) )
Hi @AllanBerces .
Create a virtual summarized table of each date and the value. Pick the one with the highest value using TopN and use that top date as a filter
Max Value Date =
VAR TopDate =
CALCULATE (
MAXX (
TOPN (
1,
ADDCOLUMNS (
SUMMARIZE ( ALLSELECTED ( Dates ), Dates[Date] ),
"@value", [Total Transactions] -- or your count measure
),
[@value], DESC
),
[Date]
),
ALLSELECTED ()
)
RETURN
CALCULATE ( [Total Transactions], KEEPFILTERS ( Dates[Date] = TopDate ) )
Hi @danextian @Shahid12523 @rohit1991 thank you very much for the reply working as i need
Hello @AllanBerces,
The comment you were responding to has been removed.
Best,
Natalie H.
Community Manager
Hi @AllanBerces
You can achieve this directly using a Top N filter on the Matrix visual.
Steps:
Create a simple measure for your counts:
Total Count =
SUM ( Fact[Qty] )
Build your Matrix:
In the Filters on this visual pane:
Result:
The Matrix now shows only the date that has the highest total count (in your case, 2 June 2025 = 234) along with the LaborType breakdown underneath.
Hi @rohit1991 thank you very much for the reply but i cant used that way, i will add this measure to other table
MaxLaborTypeDate =
CALCULATE (
MAX ( 'YourTable'[Date] ),
TOPN (
1,
SUMMARIZE ( 'YourTable', 'YourTable'[Date], "Count", COUNTROWS ( 'YourTable' ) ),
[Count], DESC
)
)
Hey @AllanBerces,
You can try using this measure:
Max Count =
VAR MaxCountInTable =
CALCULATE(
MAX([Count]),
ALLSELECTED()
)
RETURN
IF(
[Count] = MaxCountInTable,
[Count],
BLANK()
)
Fixed? ✓ Mark it • Share it • Help others!
Best Regards,
Jainesh Poojara | Power BI Developer
Hi @jaineshp thank you very much for the reply but i dont know where can i get the count you used on the measure. I try to used the measure i created but show error
My Measure on count
Hi,
Share some data to work with and show the expected result. Share data in a format that can be pasted in an MS Excel file.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 52 | |
| 47 | |
| 41 | |
| 38 |