I'm trying to adjust my formula to only run when certain criteria within the sheet is met.
What I'd like to achieve is a formula where IF approval status IS Approved, assign a P-Code.
The P-Code formula is as follows:
=LEFT(Department@row, 3) + "-" + (YEAR([Created date]@row) + "-" + IF(Prefix@row <> "", Prefix@row, "") + Suffix@row + "")
I don't want to assign a P-Code if the project is pending or declined.
What would I need to add to run the formula only when "Approved" is selected?