I am trying to send a form to employees when they change either their address1 or their city and live in PA. I do not want the form to be sent if they’ve only changed their phone number.
I have this formula in the Condition Expression Builder but it is sending the form even when it is only a phone number change.
(qEMP_PROCESS_LEVEL==30 &&qEMP_STATE =="PA" &&oldAddr1!=qEMP_ADDR1) || (qEMP_PROCESS_LEVEL==30 &&qEMP_STATE =="PA" &&oldCity!=qEMP_CITY)
Does anyone know how I can make this happen? Do I have to create a separate branch node and then a separate e-mail node when the address line 1 changes and another when the city changes?