Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi
Someone can help me with this situation?
I need show the max value of the week every day, is It possible? What measure I need use?
I put a picture bellow that I need do.
Solved! Go to Solution.
Hi @Anonymous ,
Has your problem been solved by @Jihwan_Kim 's solution, if so, please consider accept his answer as the solution.
You can also try this measure:
Measure =
MAXX (
FILTER ( ALL ( 'Table' ), 'Table'[Week Num] = MAX ( 'Table'[Week Num] ) ),
'Table'[CONTAGEM]
)
Best Regards,
Community Support Team _ kalyj
If this post helps, then please considerAccept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Has your problem been solved by @Jihwan_Kim 's solution, if so, please consider accept his answer as the solution.
You can also try this measure:
Measure =
MAXX (
FILTER ( ALL ( 'Table' ), 'Table'[Week Num] = MAX ( 'Table'[Week Num] ) ),
'Table'[CONTAGEM]
)
Best Regards,
Community Support Team _ kalyj
If this post helps, then please considerAccept it as the solution to help the other members find it more quickly.
Hi,
I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope this can help to provide ideas on how to create a solution for your data model.
Max value of the week measure: =
VAR _weektable =
ADDCOLUMNS (
FILTER (
ALL ( 'Calendar' ),
'Calendar'[Start of Week] = MAX ( 'Calendar'[Start of Week] )
),
"@Contagemvalue", CALCULATE ( MAX ( Data[Contagem] ) )
)
VAR _groupbymaxcontagem =
GROUPBY (
_weektable,
"@maxcontagem", MAXX ( CURRENTGROUP (), [@Contagemvalue] )
)
RETURN
IF (
HASONEVALUE ( 'Calendar'[Start of Week] ),
MAXX ( _groupbymaxcontagem, [@maxcontagem] )
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |