[SalesForce] Process builder rule criteria

I am trying to use below condition to update title field on contact in process builder but it is not working.

AND(
(PRIORVALUE([Contact].Account.AccountNumber),"t"),
ISNULL([Contact].Title),
ISCHANGED([Contact].AccountId))

It is giving me error: The formula expression is invalid: Syntax error. Missing ')'

No Matter I add how many ')'

Best Answer

Try below formula if it works for you:

AND
(
   PRIORVALUE([Contact].Account.AccountNumber) = 't',
   ISNULL( [Contact].Title ),
   ISCHANGED( [Contact].AccountId )
)

You need to compare with = sign.

Related Topic