I need to update job_status to “complete” and completed to “true” for id 3818276.
I can verify whether or not an id can be changed to “complete” by checking the job_id
In other words: "if the job_id contains “complete” in job_status , then change job_status to “complete” for any id tied to job_id
If you then evaluate if this string contains the word “complete”, you can update the job_status subsequently. You could for example use a Column Expression node to perform this rule evaluation and update.
if (contains(column("Unique concatenate with count(job_status)"),"complete") == true) {
"complete"
} else {
column("job_status")
}