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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

How can I get the the corresponding value to the maximum date?

Hello

 

I have the data:

A, 01/01/20, X1

A, 02/01/20, X2

A, 01/01/20, X3

A, 02/01/20, X4

B, 01/01/20, X5

B, 02/01/20, X6

B, 01/01/20, X7

...

 

I want to get the X value which corresponds to the maximum date for each of the A and B.

 

Any idea please?

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

Here the sample data:

Capture.PNG

 

Then you can use the following measure:

 

Measure = VAR A = CALCULATE(MAX('Table'[Column2]),ALLEXCEPT('Table','Table'[Column1])) RETURN CALCULATE(CONCATENATEX('Table','Table'[Column3],","),'Table'[Column2] =A)

 

Capture1.PNG

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@Anonymous , Try a measure like

calculate(sum(Table[col 3]), filter(Table, Table[Date] = calculate(max(Table[date]), allexcept(Table, Table[col 1]))))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

@amitchandak  I cannot make any sense of what you wrote, can you explain step by step please?

Hi @Anonymous ,

 

Here the sample data:

Capture.PNG

 

Then you can use the following measure:

 

Measure = VAR A = CALCULATE(MAX('Table'[Column2]),ALLEXCEPT('Table','Table'[Column1])) RETURN CALCULATE(CONCATENATEX('Table','Table'[Column3],","),'Table'[Column2] =A)

 

Capture1.PNG

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

@Anonymous , I do not see any column name,

So the columns are col1, date, col3

 

so you can try max of col3 on max of date on allexpect col 1

calculate(maxTable[col 3]), filter(Table, Table[Date] = calculate(max(Table[date]), allexcept(Table, Table[col 1]))))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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