1

I am using Google Sheets. I have a lot of columns. The only ones that count are: a column with dd/mm/yyyy named "start date" and a column with dd/mm/yyyy named "finish date". I want to:

  1. highlight red if there is a start date but no finish date.
  2. highlight orange if there is a finish date but no start date.

I haven't been able to get a formula (in conditional formatting) to work.

1 Answer 1

1

for orange applied to range A1:A:

=(A1="")*(ISDATE(B1))

for red applied to range B1:B:

=(B1="")*(ISDATE(A1))

0

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.