Formula help

kpierson109
โญโญโญโญ
I want a dropdown list to populate choices from another dropdown list.
So If "Wonder" is selected in the first dropdown, I want "al.wonder" to be selected from the other list.
If "Wonder" and "Organize" are both selected, I want "al.wonder" to be selected also "al.organize" to be selected as well.
=IF([WW Label(s)]@row = "Wonder", "al.wonder")
Answers
-
Hi @kpierson109
Try this formula
=IF(ISERROR(FIND("Wonder", [First Dropdown]@row)), "", "al.wonder") & IF(ISERROR(FIND("Organize", [First Dropdown]@row)), "", ",al.organize")
Make sure your going to remove
[First Dropdown]
with the actual cell reference of your first dropdown list.
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!