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
artp3642
New Member

How to filter latest dates using a measure?

I have the a table with many values for each date, and a column named type and other name type2 that distinguishes each record from each other. So it is:

 

type1type2valuedate
M_0conv514/02/2022
M_0spread1014/02/2022
M_1conv1514/02/2022

 

I tried to filter using the following code:

 

Medida = VAR ultima = CALCULATE ( MAX ( Table1[date] ), ALL ( Table1 ) ) RETURN IF ( MIN ( Table1[date] ) = maxDate, 1, 0 )

 

Unfortunately it doesnt work.

I also tried creating a column with value 1 on the latest date, and 0 elsewhere. But even adding a slicer and filtering it value dosn't work.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @artp3642 ,

you can try for 

Medida = 
VAR ultima = CALCULATE(MAX(Table1[date]),ALL(Table1)) 
RETURN
IF(
   Table1[date]) = ultima,1,0
  )

Regards,
Aditya

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @artp3642 ,

you can try for 

Medida = 
VAR ultima = CALCULATE(MAX(Table1[date]),ALL(Table1)) 
RETURN
IF(
   Table1[date]) = ultima,1,0
  )

Regards,
Aditya

amitchandak
Super User
Super User

@artp3642 , Try for column

 

Medida =
VAR ultima = CALCULATE MAX ( Table1[date] )
RETURN
IF (Table1[date] = maxDate, 1, 0 )

 

what you have written is for a measure

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.