Help

Re: If statement with date - Error on blank cells

Solved
Jump to Solution
848 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Amanda_Gronewol
4 - Data Explorer
4 - Data Explorer

I am trying to check to see if the Date column is empty, then if not, display the date’s weekday in the Day of Week column.
Screen Shot 2021-09-01 at 8.14.56 AM

Here’s my formula in the Day of Week column:

IF({Date}!=BLANK(),DATETIME_FORMAT({Date},'dddd'),"")

I do not understand why I am getting errors for all the blanks. I’ve tried several different versions of the formula above. Any help appreciated.

1 Solution

Accepted Solutions
augmented
10 - Mercury
10 - Mercury

Hi Amanda. Even when your date field looks empty, it is not BLANK(). Replace…

IF({Date}!=BLANK()...

with

IF({Date}...

See Solution in Thread

1 Reply 1
augmented
10 - Mercury
10 - Mercury

Hi Amanda. Even when your date field looks empty, it is not BLANK(). Replace…

IF({Date}!=BLANK()...

with

IF({Date}...