Steve thanks for the link to the article. I am still not achieving the outcome I desire from my expression. My original query was wrong period. The query I wrote using the article is still wrong solely based on the fact that it doesn’t work but it is more accurate in pinpointing what data is valid.
I wrote the queries twice. See below…one with the AND and one with just OR:
OR(([_THIS]="Not Started,ISBLANK([Project Due Date])),([_THIS]=“In Progress”,ISNOTBLANK([Project Due Date])),([_THIS]=“Delivered”,ISNOTBLANK([Project Due Date])),([_THIS]=“Canceled”,ISBLANK([Project Due Date])))
OR(([_THIS]="Not Started,AND(ISBLANK([Project Due Date]))),
([_THIS]=“In Progress”,AND(ISNOTBLANK([Project Due Date]))),
([_THIS]=“Delivered”,AND(ISNOTBLANK([Project Due Date]))),
([_THIS]=“Canceled”,AND(ISBLANK([Project Due Date]))))
My error message is below and was the same both times:
Expression ‘OR(([_THIS]="Not Started,ISBLANK([Project Due Date])), ([_THIS]=“In Progress”,ISNOTBLANK([Project Due Date])), ([_THIS]=“Delivered”,ISNOTBLANK([Project Due Date])), ([_THIS]=“Canceled”,ISBLANK([Project Due Date])))’ was unable to be parsed: Number of opened and closed parentheses does not match.
I have counted