I need a formula that turns on the flag if the Schedule Date @row is blank OR if the Schedule Date@row > Open Date@row, but can't seem to get it right after trying it multiple ways. Here are two example of the many formulas I've tried:
=IF(OR([Schedule Date]@row <> "", [Schedule Date]@row > [Open Date]@row), 1, 0)
=IFERROR(IF(OR([Schedule Date]@row <> "", [Schedule Date]@row > [Open Date]@row), 1, 0), "")
Any help is greatly appreciated in advance! Thank you.