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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Return Max Date if Value Is 0 Per ID

I would like a DAX statement that returns the MAX(Date) for each ID only if the Amount=0 for the record with the MAX(Date) value.

 

End Date = CALCULATE(MAX(SampleData[Date],ALLEXCEPT(SampleData, SampleData[ID])

 

gets the MAX(Date) for each ID, but obviously doesn't account for the Amount being 0. I am not sure whether I need an IF statement or a FILTER (or both).

 

Thank you!

 

SampleData

IDDateAmountEnd Date
12/1/2020500.00 
13/12/20200.003/12/2020
21/11/2020300.00 
31/4/2020255.00 
32/15/20200 
33/22/202014.00 
41/21/202051.00 
42/16/20200 
43/17/202003/17/2020
1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this code for calculated column:

 

End Date =
VAR _lastDate = CALCULATE(MAX('Table'[Date]); ALLEXCEPT('Table'; 'Table'[ID]))
RETURN IF('Table'[Amount] = 0 && 'Table'[Date] = _lastDate; _lastDate ; BLANK())
 

If you consider it as a solution, please mark as a solution and kudos.

Ricardo

 


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



View solution in original post

1 REPLY 1
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this code for calculated column:

 

End Date =
VAR _lastDate = CALCULATE(MAX('Table'[Date]); ALLEXCEPT('Table'; 'Table'[ID]))
RETURN IF('Table'[Amount] = 0 && 'Table'[Date] = _lastDate; _lastDate ; BLANK())
 

If you consider it as a solution, please mark as a solution and kudos.

Ricardo

 


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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