Forum Discussion
Anonymous
3 years agoNot applicable
Dax help with getting difference between 3 dates
Hello, I am currently building a dashboard and having trouble creating an expression computing the difference between dates. This issue is there are three dates to account for The Crea...
barritown
Solution Sage
3 years agoHi Anonymous,
I guess you need a calculated column like this:
In plain text:
Difference Calculated Column =
DATEDIFF ( [Created Date], IF ( ISBLANK ( [Negotiated Due Date] ), [Due Date], [Negotiated Due Date] ), DAY )
Best Regards,
Alexander