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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Mahamood0218
Helper II
Helper II

Minus between the two dates

HI,

I  need to do minus between two dates

Mahamood0218_0-1671012551970.png

ex:  Clearing date1 - posting date1 = new date 

 

could you please suggest dax formula.

 

Thanks.

1 ACCEPTED SOLUTION
Mahesh0016
Super User
Super User

new Date = DATEDIFF(MAX(XYZ[Clearing date1]),MAX(XYZ[ posting date1]),day)

View solution in original post

5 REPLIES 5
Mahesh0016
Super User
Super User

can you please write the expected RESULT after subtracting two dates.

@Mahesh0016 i got the result by using your formula.

thank you.

Mahesh0016
Super User
Super User

new Date = DATEDIFF(MAX(XYZ[Clearing date1]),MAX(XYZ[ posting date1]),day)

@Mahesh0016 i want new date means , if we substract two dates we will get new date?

goncalogeraldes
Super User
Super User

Hi @Mahamood0218! It looks like your date column is not formatted as a date so I would suggest a formula like the following:

 

Date_Diff = 
    DATEDIFF(
        DATEVALUE( SELECTEDVALUE( TableName[Posting Date1] ) ), -- can be MAX() instead
        DATEVALUE( SELECTEDVALUE( TableName[Clearing Date1] ) ), -- can be MAX() instead
        DAY -- type of interval for calculation
    )

 

Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors