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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Mahmed1
Helper IV
Helper IV

Find max date

Hi All

 

Hoping you can help me

please

 

i have some a dax code that give me the maxx code which i put in a card

 

max_val = maxx(dimtable[date],[%Handled])

 

i neee to also get the date the max_val is but cant seem to figure out how i get the corresponding date

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Mahmed1 Try:

max_val_date = 
  VAR __maxVal = [max_val]
  VAR __Table = FILTER(ALL('dimtable'), [%Handled] = __maxVal)
  VAR __Result = MAXX(__Table,[date])
RETURN
  __Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Mahmed1
Helper IV
Helper IV

@Greg_Deckler Thank you - ill give that a go

i was trying to find a way of getting a table from selected visual

 

thank you once again

Greg_Deckler
Community Champion
Community Champion

@Mahmed1 Try:

max_val_date = 
  VAR __maxVal = [max_val]
  VAR __Table = FILTER(ALL('dimtable'), [%Handled] = __maxVal)
  VAR __Result = MAXX(__Table,[date])
RETURN
  __Result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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