I want cell A1 to say Open until I enter text or a date into cell A2 and change to closed

1

I want cell A1 to say Open until I enter text or a date into cell A2 and change to closed

The formula I am trying to use is =IF(ISBLANK(I14),"open",C14)=If(...(I14),"Closed",C14)

Benjamin Murray

Posted 2019-06-05T19:35:31.330

Reputation: 11

Answers

1

Assuming you're using excel, you don't need two ifs - only a single if that tests if A2 is blank:

=IF(ISBLANK(A2), "Open", "Closed")

Mureinik

Posted 2019-06-05T19:35:31.330

Reputation: 3 521