Forum Discussion
zaidmasad
8 years agoHelper III
Date Difference with blank values
Hello, I have an issure with this code, that calculates the transit time between two dates, when the last date is blank. Is there a way to add a function to that code, so it gives a blank value w...
- 8 years ago
You may use ISBLANK Function as follows.
IF ( ISBLANK ( [Start Date] ) || ISBLANK ( [End Date] ), BLANK (), [count] )
v-chuncz-msft
8 years agoCommunity Support
You may use ISBLANK Function as follows.
IF ( ISBLANK ( [Start Date] ) || ISBLANK ( [End Date] ), BLANK (), [count] )