Forum Discussion
Anonymous
2 years agoNot applicable
Need help to calculate days
Days between "Designstartdate" and "datesentforreview" How do i achieve this?
bhanu_gautam
Super User
2 years agoAnonymous , Create a new calculated column by going to modelling tab and click on new column
DaysBetween =
DATEDIFF(
'ArtworkTracker'[Designstartdate],
RELATED('Review List'[datesentforreview]),
DAY
)
Anonymous
2 years agoNot applicable
It gives me this
- Anonymous2 years agoNot applicable