Post

2 followers Follow
0
Avatar

Workflow/ Action - Completing one task creates a new one

Hi, I'm trying to create a workflow rule to create a "Follow Up" task everytime a certain task with a specific name is completed.

 

I'm trying to write the rule, but im getting hung up on the naming of the status types.

Here's what I've got so far:$Name= "&Broadcast-Send" & $TrackStatus = 'Completed'

$Name= "%Broadcast-Send" & $TrackStatus = 'Completed'

 

But the syntax checker keeps telling me i have the wrong value in the track status.  Should it be a numerical value?

Stephen Weinberg Answered

Please sign in to leave a comment.

1 comment

0
Avatar

 Stephan,

 

The reason for the error is that your AND operator is wrong, it should be && and not &.

In addition, if you are looking for complex string comparison I advise to use Contains() or InStr() functions, for example: Contains($Name,'Broadcast').

 

Please let me know if that helped.

 

Good luck!

Tamir

Tamir Avital 0 votes
Comment actions Permalink