How do I make the numeric value returned in this formula usable in other mathematical formulas?

Value returns correctly, but I need to be able to add that value to OTHER formulas and fields.

=IF([Target Level:]@row = "Standard", "$19,000", IF([Target Level:]@row = "Superior", "$100,000", IF([Target Level:]@row = "Premier", "$240,000", IF([Target Level:]@row = "Elite", "$490,000", IF([Target Level:]@row = "Platinum", "$875,000", IF([Target Level:]@row = "Presidential", "$1,500,000"))))))

TIA!

Tags:

Answers

  • Brent Wilson
    Brent Wilson ✭✭✭✭✭
    edited 10/14/21

    1) By using "$240,000" in the formula Smartsheet sees it as text.. it sees it as no different than "Hot Chocolate". So you want to type 240000 and let the formatting of the column change it to $240,000

    2) Try this:

    =IF([Target Level:]@row = "Standard", 19000, IF([Target Level:]@row = "Superior", 100000, IF([Target Level:]@row = "Premier", 240000, IF([Target Level:]@row = "Elite", 490000, IF([Target Level:]@row = "Platinum", 875000, IF([Target Level:]@row = "Presidential", 1500000))))))

    Brent C. Wilson, P.Eng, PMP, Prince2

    Facilityy Professional Services Inc.

    http://www.facilityy.com

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!