I have a form that adds rows to a sheet and I have a flag column in the sheet that looks for certain values in the row and flags when it finds "TBD". SO when someone fills out the form and their data contains "TBD", it checks a flag on that row.
Eventually those TBD issues are updated and get resolved in the sheet, thereby automatically unchecking the flag column when it no longer finds "TBD".
I need to get an email notification when that flag is unchecked, so I have a work flow set up to trigger when rows are changed, when the TBD flag column *changes* to unflagged. The problem is the workflow is getting triggered when rows are added, and the entry does not contain "TBD" so the flag is never getting checked to begin with. i.e. someone completes the form and a new row is created (it does not contain TBD)...the sheet looks for TBD and doesn't find it so *leaves* the flag unchecked. What's the deal?