Check flag if baseline start is not equal to actual start
Hi, I'm trying to do what I thought was a simple formula. I want the flag to check if 1) "Baseline Start" cell is not empty, AND 2) "Baseline Start" is not equal to "Actual Start". Here's what I have so far:
=IF(AND(NOT([Baseline Start]@row, ""), ([Baseline Start]@row <> [Actual start]@row, 1, "")))
Thanks in advance!
Best Answer
-
Try this instead:
=IF(AND([Baseline Start]@row <> "", [Baseline Start]@row <> [Actual Start]@row), 1)
Answers
-
Try this instead:
=IF(AND([Baseline Start]@row <> "", [Baseline Start]@row <> [Actual Start]@row), 1)
-
This is great, thank you!
-
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!