Formula help

kpierson109
kpierson109 ✭✭✭
edited 06/21/23 in Formulas and Functions

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

  • Shubha
    Shubha ✭✭✭

    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

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!