How do I generate a text value output based on multiple inputs

Options

Is there a formula that will let me create an output based on selected input of text (not sum of numbers)

So i am trying to create a specific output eg if I select the components of an item based on multiple options it gives me the closest output

let’s say I select sand, cement, water and it gives an output of concrete.

Answers

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

    Hi @Fabarchi

    I hope you're well and safe!

    Not sure I follow.

    Can you describe your process in more detail and maybe share some screenshots? (Delete/replace any confidential/sensitive information before sharing) That would make it easier to help. 

    I hope that helps!

    Be safe and have a fantastic weekend!

    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.

  • smartsheetdev.io
    Options

    Hi @Fabarchi

    Not sure if this what you need but you could use IF statement. For example IF(Column1@row = "a", IF(Column2@row = "b", "abc", " "), " ")

    The above will populate only if the data in Column1 is "a" and data in Colimn2 is "b" otherwise it will leave cell blank.