I have a WFActionScript that updates the Project S...
# suiteflow
n
I have a WFActionScript that updates the Project Status when a Project Task status = 'x'......That works great. Now our PMO wants a little more. If all the tasks equal a certain status, then update the Project Status. I built a saved search that has a summary of below:
Copy code
CASE WHEN {status} != 'Complete' AND {status} != 'Not Required' THEN 1 ELSE 0 END
Thinking that I could use that as my saved search condition on the Workflow Action to decide if the Workflow Action Script runs. e.g. If conditions met, a result is returned (Fire WFActionScript). If not, nothing is returned (DO NOT Fire WFActionScript) However, it seems to not fire. Am I chasing a Red Herring?