I have tried many different combos and either the Account (Prospect or Customer) cannot be edited period or they can be edited and the addresses can be changed. #.Fail
He is my last ditch effort. Can someone jump in and show me where I am going wrong.
AND(
OR(
ISPICKVAL(Type , "Customer"),
ISPICKVAL(Type , "Prospect")), $User.ProfileID <> "12345678",
ISCHANGED( BillingCity ),
ISCHANGED( BillingCountry ),
ISCHANGED( BillingState ),
ISCHANGED( BillingStreet ),
ISCHANGED( BillingPostalCode )
)
Thanks
5 answers
Darn I was so close to that! Thanks so much Matthew. Just a minor tweak was made to get it to work.
AND(
OR(
ISPICKVAL(Type , "Customer"),
ISPICKVAL(Type , "Prospect"), $User.ProfileId <> "12345678"),
OR(
ISCHANGED( BillingCity ),
ISCHANGED( BillingCountry ),
ISCHANGED( BillingState ),
ISCHANGED( BillingStreet ),
ISCHANGED( BillingPostalCode ))
)