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!