I think this IF Then formula.....but need help

I want to set up a formula in the Bonus column. Currently there is a drop down selection for "Global Level". The individual can select 1 option out of 7. GL4, GL5, GL6, GL7... Once its selected, I want a formula in the bonus column that is...."If Global Level is GL4, then 2.5%, if GL 5 then 5%, if GL 6, then 7.5%, etc. etc. etc.....How do I set up this "nesting" type formula. My current one is not working.

Best Answer

  • Devin Lee
    Devin Lee ✭✭✭✭✭
    Answer ✓

    @Melissa Lee

    Try this:

    =IF([Global Level]@row = "GL4", 0.025, IF([Global Level]@row = "GL5", 0.05, IF([Global Level]@row = "GL6", 0.075, IF([Global Level]@row = "GL7", 0.1, IF([Global Level]@row = "GL8", 0.125, IF([Global Level]@row = "GL9", 0.15, IF([Global Level]@row = "GL10", 0.175, "")))))))
    

Answers

  • Devin Lee
    Devin Lee ✭✭✭✭✭
    Answer ✓

    @Melissa Lee

    Try this:

    =IF([Global Level]@row = "GL4", 0.025, IF([Global Level]@row = "GL5", 0.05, IF([Global Level]@row = "GL6", 0.075, IF([Global Level]@row = "GL7", 0.1, IF([Global Level]@row = "GL8", 0.125, IF([Global Level]@row = "GL9", 0.15, IF([Global Level]@row = "GL10", 0.175, "")))))))
    
  • Melissa Lee
    Melissa Lee ✭✭
    edited 01/11/22

    Thanks for the quick response and it worked! I had the formula correct but I messed up the "" and )))))))) at the end...so thank you so much! Huge help and reduced my headache. :) THANK YOU!!!!

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!