Hello all,
I'm having trouble nesting the IF(AND(NOT(ISBLANK formula with multiple "ANDS"
If the Provisional Requested Amount column is NOT Blank AND the Provisional Requested Amount is less than or equal to the Final Requested amount column AND the Provisional Requested Amount is over 50000, I want the cell to say approved...
=IF(AND(NOT(ISBLANK([Provisional Requested Amount]@row)), [Provisional Requested Amount]@row <= [Final Requested Amount]@row), "Final Approval", IF([Provisional Requested Amount]@row <= 50000, "Final Approval"))
Thanks in advance.