Forum Discussion
Syndicate_Admin
5 years agoAdministrator
Date difference between date available in column and current date
Hi Experts,
Please help me to find days between column date and today, i tried below code in custom column function but DateDiff is not recognised code.
=Datediff(Today(),AR[DATE],Day)
Hi @Babumurugan,
In PQ would be:
2 Replies
- Payeras_BISolution Sage
Hi @Babumurugan,
In PQ would be:
- AnonymousNot applicable
You can add a custom column and below DAX formula :
DateDiff = DATEDIFF( [DATE],TODAY() , DAY)