How to add if cell is not blank then...or if cell is blank then leave blank?

Thank you in advance.

I have the formula working that I need which is this:

=IF([PO Amount]@row > 100000, "Level 3", IF([PO Amount]@row > 50000, "Level 2", IF([PO Amount]@row <= 50000, "Level 1")))

But I need to add text that indicates if the cell is blank than leave blank or if it is not blank than the formula above.

This was my attempt that did not work:

=IF(NOT(ISBLANK([PO Amount])@row > 100000, "Level 3", IF([PO Amount]@row > 50000, "Level 2", IF([PO Amount]@row <= 50000, "Level 1"))

Any help would be greatly appreciated!

Answers

  • Mark.poole
    Mark.poole ✭✭✭✭✭✭

    @RPlaud

    Your Almost there.

    =IF(NOT(ISBLANK([PO Amount]@row)),IF([PO Amount]@row > 100000, "Level 3", IF([PO Amount]@row > 50000, "Level 2", IF([PO Amount]@row <= 50000, "Level 1"))))

    Or you could Try it like this.

    =IF([PO Amount]@row)<>"",IF([PO Amount]@row > 100000, "Level 3", IF([PO Amount]@row > 50000, "Level 2", IF([PO Amount]@row <= 50000, "Level 1")))

    In Either case you should get the same outcome.

    If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!