I want to assign a specific value for when a dropdown selection was made for a column.

If I wanted to assign a specific value for when a dropdown selection was made for a column, what formula should I use. I'm trying to assign a point-value in a separate column that is dependent on the selection made from a dropdown item in another column. For instance, say in a form the user selects a fixed radio button, but I'm wanted to assign a specific number point system to each drop-down option so I can give a score at the end.

Best Answer

  • Nick Korna
    Nick Korna ✭✭✭✭✭✭
    Answer ✓

    Hi @KarenTF,

    You can do this with a nested IF statement. As a basic example, if you had a dropdown with options A, B, C and wanted to assign them points values of 1, 2, 3 respectively, you would use the following formula in your points column:

    =IF([Radio selection]@row = "A", 1, IF([Radio selection]@row = "B", 2, IF([Radio selection]@row = "C", 3)))

    If you have multiple instances of this then you could then use a SUM formula to get the total at the end.

    Hopefully this points you in the right direction, but if you've more specifics or have any problems/questions then just post!

Answers

  • Andrée Starå
    Andrée Starå ✭✭✭✭✭✭

    Hi @KarenTF

    I hope you're well and safe!

    You could use Workflows with the change a cell Action option or formula.

    Can you share some screenshots? (Delete/replace any confidential/sensitive information before sharing) That would make it easier to help.

    Would any of those options work/help?

    I hope that helps!

    Be safe, and have a fantastic week!

    Best,

    Andrée Starå | Workflow Consultant / CEO @ WORK BOLD

    Did my post(s) help or answer your question or solve your problem? Please support the Community by marking it Insightful/Vote Up, Awesome, or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!

    SMARTSHEET EXPERT CONSULTANT & PARTNER

    Andrée Starå | Workflow Consultant / CEO @ WORK BOLD

    W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35

    Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.

  • Nick Korna
    Nick Korna ✭✭✭✭✭✭
    Answer ✓

    Hi @KarenTF,

    You can do this with a nested IF statement. As a basic example, if you had a dropdown with options A, B, C and wanted to assign them points values of 1, 2, 3 respectively, you would use the following formula in your points column:

    =IF([Radio selection]@row = "A", 1, IF([Radio selection]@row = "B", 2, IF([Radio selection]@row = "C", 3)))

    If you have multiple instances of this then you could then use a SUM formula to get the total at the end.

    Hopefully this points you in the right direction, but if you've more specifics or have any problems/questions then just post!

  • KarenTF
    KarenTF ✭✭✭✭✭

    Thanks Nick! This is what I was needing, just missing the quotation marks!

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!