Workflow I send an email

Hi everyone
in a workflow I send an email and use this formula:
E (ISNOTBLANK ([State]), [_ THISROW_BEFORE]. [State] <> “inoperative”).
the formula works very well, what I would like to do is not to send an email if in the “typology” column = [tractor] .for now send email every time the status column is inoperative, thank you

0 3 292
  • UX
3 REPLIES 3

You could use form example…
AND(
ISNOTBLANK([State]),
[_ THISROW_BEFORE].[State]<>“inoperative”,
[tractor]<>“typology”).

Perfect!!!

You’re welcome

Top Labels in this Space