Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
JustSayJoe
Advocate IV
Advocate IV

Highest Daily Value of Measure for Each Category

There seems to be a lot of tutorials and responses to finding maximum values for dates, but none that I can find to fit my specific need.


Table = TestTable
Including columns:
     Team
     Date
     Payment
(there are more, but for all intents and purposes, these will suffice)

I also have a Measure that does a calculation returning a currency value. Let's call it, [Amount Measure].

I'm trying to return the single highest daily amount of that [Amount Measure] for each Team. Is there a DAX formula that can accomplish this?

2 ACCEPTED SOLUTIONS

I switched the VALUES portion to ALLSELECTED instead, and that seemed to fix things. Thanks for the assist!

View solution in original post

@JustSayJoe 

Sorry my mistake. It should be MAXX not MAX

MAXX ( 

VALUES ( testable[Date] ),

[Amount Measure]
)

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi @JustSayJoe 

I am so glad to hear that you have found the workaround . Please consider Accept it as the solution to help the other members find it more quickly. 

 

Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

tamerj1
Super User
Super User

Hi @JustSayJoe 

if you are slicing by team, simply try

MAX ( 

VALUES ( testable[Date] ),

[Amount Measure]
)

I received the following error when trying this.

"Calculation error in measure. A table of multiple values was supplied where a single value was expected."

I switched the VALUES portion to ALLSELECTED instead, and that seemed to fix things. Thanks for the assist!

@JustSayJoe 

Sorry my mistake. It should be MAXX not MAX

MAXX ( 

VALUES ( testable[Date] ),

[Amount Measure]
)

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.