You need to sign in to do that
Don't have an account?

Workflow rule criteria formula help
Hey all,
I'm creating a workflow that I'd like to trigger when a Billing Contact is updated - not when one is added for the first time and not when it is changed to a blank text value. I had the following formula, but it's triggering when it changes from blank to a name and I just want it to trigger when it changes from one name to another name. Let me know if I can provide any more information, thanks!
AND(ISCHANGED(Billing_Contact__c )
I'm creating a workflow that I'd like to trigger when a Billing Contact is updated - not when one is added for the first time and not when it is changed to a blank text value. I had the following formula, but it's triggering when it changes from blank to a name and I just want it to trigger when it changes from one name to another name. Let me know if I can provide any more information, thanks!
AND(ISCHANGED(Billing_Contact__c )
AND(ISCHANGED(Billing_Contact__c ),ISBLANK(Billing_Contact__c)=FALSE)
Hope this will work for you
I've tried these and it seems to be triggering anytime someone makes an update to the account record in general or if a new account record is created, not just if the Billing Contact field is updated. I'd like it to trigger when an account record that has a Billing Contact value changes from one name to another name - not if an account record is created with a blank Billing Contact and also not if a blank Billing Contact is then changed to a name, only if an existing name is updated to another name. Is there a way to narrow it down to that?
AND(ISCHANGED( Primary_Admin_Contact__c ), NOT(ISNULL(Primary_Admin_Contact__c)), NOT(ISNULL(PRIORVALUE(Primary_Admin_Contact__c))))
But this will only fire the rule if the contact is changed, not to a blank value and not if the previous value before the change was blank.