Forum Discussion
Anonymous
5 years agoNot applicable
Date difference calculation when it is blank
Hi, need help on data diff calculation when it is blank. For row1, I am able to find difference using datediff function. =datediff(date1,date4,day). but for remaining rows, when it is blank I ...
- 5 years ago
Anonymous , a new column
datediff([date1], coalesce([Date4],[Date3], [Date2]), day)
amitchandak
Super User
5 years agoAnonymous , a new column
datediff([date1], coalesce([Date4],[Date3], [Date2]), day)
Anonymous
5 years agoNot applicable
Perfect. You made my day easy. Thank u so much. amitchandak