How to add date condition to IF/AND equation
I have multiple IF/AND equations in a column formula. I want to add a condition to the IF/AND equations to apply before a certain date in a column(Date of Shoot). This is an example of one of the formulas:
IF(AND(Talent@row = "Agency", Time@row = "Half", [Date of Shoot]@row < DATE(2023, 9, 16), 250
But is shows as "incorrect argument"
Best Answer
-
Hi @mpajuelo
You are missing 2 closed parens. Try the below.
=IF(AND(Talent@row = "Agency", Time@row = "Half", [Date of Shoot]@row < DATE(2023, 9, 16)), 250)
Hope this helps,
Dave
Answers
-
Hi @mpajuelo
You are missing 2 closed parens. Try the below.
=IF(AND(Talent@row = "Agency", Time@row = "Half", [Date of Shoot]@row < DATE(2023, 9, 16)), 250)
Hope this helps,
Dave
-
It works, 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!