What I'm trying to accomplish:
- If [Approved] is checked, show [Status] as "Complete"
- If [Ad RSS Link], [Subject Line], and [Done] are not blank, show [Status] as "Proofing"
- If [Ads Entered] is not blank, show [Status] as "Proofing"
- If all of the above are not true, show [Status] as "Waiting for Information"
Here is the formula I have, but it comes back as UNPARSEABLE. Any ideas or something I'm missing perhaps?
=IF(NOT(ISBLANK([Approved@row])), "Complete", IF(AND(NOT(ISBLANK([Ad RSS Link]@row)), NOT(ISBLANK([Done]@row)), NOT(ISBLANK([Subject Line]@row)), "Proofing", IF(NOT(ISBLANK([Ads Entered]@row)), "Proofing", "Waiting for Information"))))