Display multiple Values depending on selection

John_CGS
John_CGS ✭✭
edited 12/09/19 in Formulas and Functions

Hi guys (1st post!) 

I'm trying to display different numerical values in a cell depending on what selection is in another cell's text dropdown. 

Example

Dropdown choices.. Bob, Bill, Ben.. Cell A1

In Cell A2 I want to show '1', '2' or '3', depending on the A1 selection. 

I've been trying to use IF statements, but can only get it working for one selection (by hiding the value elsewhere in a hidden cell), but I cant figure out multiples. Would anyone have any suggestions? Is it even possible?

thank you. 

 

Tags:

Comments

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭

    THe basics of an IF statement are

     

    =IF(This is true, then do this, if not then do this)

     

    To nest IF statements, think of it this way...

     

    =IF(A1 is "Bob", then display 1, if it is NOT "Bob" then IF(A1 is "Bill", then display 2, if it is not "Bill" then IF(A1 is "Ben", then display 3, if it is not "Ben" then display "No Name")))

     

    =IF(A1 = "Bob", 1, IF(A1 = "Bill", 2, IF(A1 = "Ben", 3, "No Name")))

     

    NOTE: I used 3 IF statements, so I closed the formula out with 3 ). You do have to remember to close out ALL statements when nesting.

     

    This will display a 1 for Bob, a 2 for Bill, a 3 for Ben, and if it is neither of the three, it will say No Name.

    Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!

    CERTIFIED SMARTSHEET PLATINUM PARTNER

    10xViz.com

  • Paul, you hero. Thank you, 

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭

    Happy to help, John! yes

    Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!

    CERTIFIED SMARTSHEET PLATINUM PARTNER

    10xViz.com

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!