Skip to main content
Hi..I have a Lookup field ADD USER and other text field EMAIL ID. I need to have the email ID populated based on the user chosen in ADD USER field and i do not want to use/make EMAIL ID a formula field. How can this be achieved using Workflows ? 

 

appreciate your help.
4 answers
  1. Sep 28, 2017, 7:59 PM

    In that case, create a Process that anytime the ADD USER field is populated upon creation or changes and is not blank:

    OR(

    AND(

    ISNEW(),

    NOT(ISBLANK(ADD USER))),

    AND(

    ISCHANGED(ADD USER),

    NOT(ISBLANK(ADD USER))

    )

    Update the Email ID field and reference the ADD USER's Email Address.

0/9000