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
AntonioLouisa
Regular Visitor

Dax Help - Extract Max Date from Table Visual

Hi All,

 

Is there a way to extract the max Date in the following Visual. 

i.e. I need the date 24/12/2018 (in a measure) based on the condition that value of $ Forecast Remaining being almost zero.

 

...But because [$ Forecast Remaining] is a Quick Measure Running Total, I dont seem to be able to create a Measure like the following to work

Max Date = CALCULATE(MAX(Table,[Date]),[Flag $ Forecast Remaining almost zero]=1) to work.

 

The Table Visual below is where I dragged sales column per date [$] and then ran a Running Total quick measure to create [$ Forecast Remaining].

 

 

Dax Help Image 1.PNG

 

Thanks,

1 REPLY 1
v-lili6-msft
Community Support
Community Support

hi, @AntonioLouisa

what do you mean  based on the condition that value of $ Forecast Remaining being almost ZERO.

Is it the min value or absolute value almost zero?

 IF so, you may try to adjust your runningtotal as  beow:

RunningTotal = CALCULATE(SUM(Table1[Sales]),FILTER(ALL(Table1),Table1[Date]<=MAX(Table1[Date])))

then create an absolute value of running total

absolute = CALCULATE(ABS([Sales running total in Date]))

and then get the maxdate

maxdate = CALCULATE(MAX(Table1[Date]),FILTER(Table1,ABS([RunningTotal])=[minabsolute]))

Result

13.JPG

here is pbix, please try it.

https://www.dropbox.com/s/ttgv7xo96zei1ox/Extract%20Max%20Date%20from%20Table%20Visual.pbix?dl=0

 

Best Regards,

Lin

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

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.