I would like to write a statement that writes Pending if true and Complete if false. The criteria for Pending are as follows:
If start date > today, and end date > today or end date is blank (where Start Date and End Date are columns)
Here is the statement I wrote, but I keep getting Incorrect Argument Set.
=IF(AND([Start Date]@row > TODAY(), [End Date]@row > TODAY(), OR(ISBLANK([End Date]@row)), "Pending", "Complete"))
I'm pretty sure 'm not using OR correctly - can someone please help?
I am new to writing embedded statements (self teaching through this forum). Any tips are greatly appreciated!
Thank you!