Formulas and Functions

Formulas and Functions

Ask for help with your formula and find examples of how others use formulas and functions to solve a similar problem.

Formula help

✭✭✭✭
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

  • ✭✭✭

    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!

Trending in Formulas and Functions