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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Avivek
Post Partisan
Post Partisan

Dax measure needed for day diff

I want to calculate the days difference between the payment received date and invoice date and the calculated column i used is

Days Diff = (RECEIVABLES[Payment Recieved date])-(RECEIVABLES[Invoice Date])
It is a straight forward measure but it seems to not work in all cases
 
 

Capture.PNG

 

S.No 5 if you see the difference in the date is 28 days but it shows 56, similarly S.No 5 the difference is 49 days.

Is there any update I need to do for the measure.

2 REPLIES 2
harshnathani
Community Champion
Community Champion

Hi @Avivek ,

 

Use this measure for calculating difference between days.

 

Days Diff =
DATEDIFF (
    MAX ( RECEIVABLES[Payment Recieved date] ),
    MAX ( RECEIVABLES[Invoice Date] ),
    DAY
)

 

https://dax.guide/datediff/

 

Regards,
Harsh Nathani

Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

 

Greg_Deckler
Community Champion
Community Champion

@Avivek - Try:

 

Days Diff = ((RECEIVABLES[Payment Recieved date])-(RECEIVABLES[Invoice Date])) * 1.

 

Otherwise, confirm there is not a duplicate record. 28 + 28 = 56 so it is suspicious. You are probably using a default SUM aggregation on that column.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

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.