Workflow - Expression

OK, Im trying to create a condition for a workflow, i want the condition to be something like this :

Send a notification to Alisonโ€™s cell if =

Columns [Team member 1][Team member 2][Team member 3][ASSIGNED TO] = โ€œAlisonโ€

Im obviously not writing it correctly. Can anyone help?

or do i have to create 4 different workflows for each scenario?

Thanks in advance.

0 5 236
5 REPLIES 5

Steve
Platinum 4
Platinum 4

What does this mean? Could you explain in plain language?

so when a form is submitted i want a work flow to send a notification to a person
if column

[Team member 1] or
[Team member 2] or
[Team member 3] or
[ASSIGNED TO]

is equal to their name

Try:

IN(
  โ€œAlisonโ€,
  LIST(
    [Team member 1],
    [Team member 2],
    [Team member 3],
    [ASSIGNED TO]
  )
)

See also:


so when a form is submitted i want a work flow to send a notification to a person
if column

[Team member 1] or
[Team member 2] or
[Team member 3] or
[ASSIGNED TO]

is equal to their name

Thanks !

I have a project management app, i can allocate tasks, i have the question, โ€œis this task assigned to a team?โ€, if it is, the end user inputs the team members, i then want the team members to get a notification via a workflow.

Top Labels in this Space