function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vaibhab ShahVaibhab Shah 

Changed value in processbuilder

Hi,

I have a scenario 
1.  On editing if the city is changed to Ahmedabad.
I have written the below formula, action is only getting fired on creation of a new record but when i am editing by changing the city to Ahmedabad it is not working.
2. While creating a record on Account, i need to check whether city and State both are not blank.

OR
(
AND
(ISNEW(),
NOT(ISBLANK([Account].City__c)),
NOT(ISBLANK([Account].State__c))
),
AND
(
ISCHANGED([Account].City__c),
IF(([Account].City__c) == 'Ahmedabad', true, false)
)
)


Can anyone help me on this?

Rgds,
Vai


 
Rushita Bavishi 1Rushita Bavishi 1

Hi vaibhav,

Make sure you have selected "when a record is created or edited" in Object selection.

I have attached the screenshot for your help. May be it will help you. If you still get issues then post screenshot of your process builder.

User-added image