IF & ISBLANK Formula with dates?

I have 2 date columns (Date A + Date B).

I want to create a formula column that is populated with the “date” located in column Date B, BUT if column Date B is empty, it is then populated with the “date” in column Date A.

Any help?

Hey @nathan2,

Try this:

IF({Date B} = "" , {Date A} , {Date B})

Let me know how you go :slight_smile: