Hi -
Need some help with a function that has a lot of different criteria.
Here is my current formula, which is returning #INCORRECT ARGUMENT SET:
=IF([Project Type]@row = "TI", AND(ISDATE([LL Dwgs Received]@row), [Model - Complete/Posted Status]@row = "Complete"), "Complete", IF(AND(ISDATE([LL Dwgs Received]@row), OR([Model - Complete/Posted Status]@row = "Not Started", [Model - Complete/Posted Status]@row = "In Progress")), "In Progress", "Not Started"))
What i'm trying to calculate is that when a project is a TI, LL Dwgs Rec'd is a date and Model - Complete is "complete", then output "complete" but if the project is a TI, LL Dwgs Rec'd is a date and Model - Complete is "Not Started" or "In Progress" then i need it to return "In Progress".
Once i figure out the formula for the TI projects, i will add to the end a similar function for Reno projects.