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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Maximum Date

 

22.PNG

 

 

Dear Friends i need a small help

How to write a DAX

Start date : 7/10/2019 (MMDDYY)

End Date : 8/6/2019 (MMDDYY)

i need a minimum Date of end date output : 8/1/2019

i want to calculate difference dates b/W 8/6/2019  minmum of end date i.e 8/1/2019 

 

DATEDIFF(minmum of end date i.e 8/1/2019, end date i.e 8/6/2019, day)

 

 

Thanks

Godasu

2 ACCEPTED SOLUTIONS
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may try to create measures like DAX below.

 

DateDiff= DAY(LASTDATE(Table1[Date]))-1

 

Best Regards,

Amy

 

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

View solution in original post

saykasku
Resolver I
Resolver I

Hi,

I think You need this:

DayDiff = 
var _maxDate = MAX(time[dates])
RETURN
DATEDIFF(
    DATE(YEAR(_maxDate);MONTH(_maxDate);1);
    MAX(time[dates]);
    DAY
)

Przechwytywanie.PNG

 

View solution in original post

4 REPLIES 4
v-xicai
Community Support
Community Support

Hi @Anonymous  ,

 

Does that make sense? If so, kindly mark the proper reply as a solution to help others having the similar issue and close the case. If not, let me know and I'll try to help you further.

 

Best regards

Amy

saykasku
Resolver I
Resolver I

Hi,

I think You need this:

DayDiff = 
var _maxDate = MAX(time[dates])
RETURN
DATEDIFF(
    DATE(YEAR(_maxDate);MONTH(_maxDate);1);
    MAX(time[dates]);
    DAY
)

Przechwytywanie.PNG

 

v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may try to create measures like DAX below.

 

DateDiff= DAY(LASTDATE(Table1[Date]))-1

 

Best Regards,

Amy

 

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

CheenuSing
Community Champion
Community Champion

Hi @Anonymous ,

 

The requirement is not clear.

 

Can you upload sampledata,pbix and output expected to Google/OneDrive and share the link here to find the right solution.

 

Cheers

 

CheenuSing

Did I answer your question? Mark my post as a solution and also give KUDOS !

Proud to be a Datanaut!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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