Formula Question
Hello,
I have a scenario where I want to build in an If AND formula and just am not too familiar with how to set it up.
I want to set it up as follow:
If someone's age is >= 55 AND their tenure is >=10, I want the column to state yes. If it does not meet this criteria, I would like it to say No.
Could someone help me set this up?
Thank you!
Tags:
Best Answer
-
Try an =IF(AND()) formula:
=IF(AND([Age]@row>= 55, [Tenure]@row >=10), "Yes", "No")
https://help.smartsheet.com/function/and
Answers
-
Try an =IF(AND()) formula:
=IF(AND([Age]@row>= 55, [Tenure]@row >=10), "Yes", "No")
https://help.smartsheet.com/function/and
-
Thank you Will, this worked perfectly.
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!