-
Trigger a workflow when an event is created
I want to trigger a workflow when an event is created where assigned to is not equal to created by id. Here is the piece of code and it triggers whenever an event is created matching the other conditions.
And(
OR(
ISPICKVAL(Status__c,”Submitted”),
ISPICKVAL(Type, “Meeting”),
CreatedById <> OwnerId )
)
Log In to reply.