I'm trying to execute a conditional check on a column containing dates & blanks in some cells. Have been trying multiple functions to convert blanks into "NA"
but haven't been able to do so. I read in MS doc that blanks can only be replaced by numeric values, not string. Not sure if there's a workaround:
Below my code:
Total Number of Days =
IF(ISBLANK([Start Date]),BLANK(),TODAY() - [Start Date])
Above code works fine & cells with no values are shown as blank. But I tried below code:
Total Number of Days =
IF(ISBLANK([Start Date]),"NA",TODAY() - [Start Date])
This doesn't work. I even tried to SUBSTITUTE
the column value in the same, no luck:
Total Number of Days =
IF(ISBLANK([Start Date]),SUBSTITUTE([Start Date],"","NA"),TODAY() - [Start Date])
REPLACE
also doesn't do any good here.
Any ideas?
TODAY() - [Start Date]
returns Numeric values while"NA"
is a String. – Kosuke Sakai[Start Date]
and usingSWITCH
for the solution, doesSWITCH
also not work this way?Start Date Modified= SWITCH(TRUE(),[Start Date] = BLANK(),"NA", [Start Date] <> BLANK(), [Start Date])
This is putting"NA"
forBLANK
values, but the other condition doesn't work. Any ideas? – knowoneTotal Number of Days = IF ( ISBLANK ( [Start Date] ), "NA", FORMAT ( TODAY ( ) - [Start Date], "0" ) )
. But in that case, you can no more make any numeric calculation (e.g.SUM
,AVERAGE
) onTotal Number of Days
, so it depends on the use case. – Kosuke Sakai