Forum Discussion
fayanan
5 years agoFrequent Visitor
Replace null values in date column
Hi I have a column with promised delivery dates. The Excel sheet I'm importing this data from has some blank values for this column which are coming in as null values which is messing up my calculati...
v-easonf-msft
Community Support
4 years agoHi, fayanan
It is unnecessay to replace the blank value in 'proposed delivery dates'.
You just need to consider using t "if" function to discuss the situation.
delay in delivery =
IF (
ISBLANK ( [proposed delivery dates] ),
BLANK (),
[proposed delivery dates] - [actual delivery date]
)
Best Regards,
Community Support Team _ Eason