Multiple IF arguments

Options

I am trying to create a formula with a series of IF statements so that if the Gov Priority is High, it returns 30 in the Gov Priority Score cell, if it is Fixed it returns 50 in the Gov Priority Score cell, and so on. I cannot get the formula to work. Any suggestions?


This is the formula I was attempting to use:

=IF([Gov Priority]@row = Fixed,"50", IF([Gov Priority]@row = High,"30", IF([Gov Priority]@row = Medium,"20", IF([Gov Priority]@row= Low,"10", ))))

Answers

  • Heather Duff
    Heather Duff ✭✭✭✭✭✭
    Options

    Hi @Mindy Schlegel ,


    Try this:

    =IF([Gov Priority]@row = "Fixed",50, IF([Gov Priority]@row = "High",30, IF([Gov Priority]@row ="Medium",20, IF([Gov Priority]@row= "Low",10,""))))


    Let me know if it works!


    Best,

    Heather

  • Mindy Schlegel
    Options

    Hi Heather,

    Super close! Here is the formula that worked for me:

    =IF([Gov Priority]@row = "High", 30, IF([Gov Priority]@row = "Medium", 20, IF([Gov Priority]@row = "Low", 10, IF([Gov Priority]@row = "Fixed", 100))))

    Thanks for your help!!

    Mindy

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!