This is currently how the rule appears:
OR(ISCHANGED( StageName ), ISNEW() ) &&
ISPICKVAL(StageName , "Quote Stage")
For this new workflow I am trying to create, I need an email alert to be generated when an opportunity is moved to a certain stage, but in this case for only 3 specific opportunity owner's. Backstory...I have a manager that has 3 sales staff that report directly to him, and he wants to know when they have requested a quote.
Thanks!
6 answers
Please use this formula, I forgot to remove last comma after third email address.
AND
(
OR
(
ISCHANGED(StageName),
ISNEW()
),
ISPICKVAL(StageName , "Quote Stage"),
OR
(
Owner.Email = 'YourFirstUserEmail@gmail.com',
Owner.Email = 'YourSecondUserEmail@gmail.com',
Owner.Email = 'YourThirdUserEmail@gmail.com'
)
)