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
AbAb 

Execute a process builder only for update action

Hello,

In my process builder, i want to execute a action on create and other on update but the problem is the entry criteria for processbuilder 
"when a record is created or edited"
contradicts to
"only when a record is created"
How can i check in my decision, to by pass if it is create ?

thanks for sugestion !
Best Answer chosen by Ab
Deepak Maheshwari 7Deepak Maheshwari 7

Hi,

 

You can use add below function in rule criteria:

 

NOT(ISNEW())

 

All Answers

Deepak Maheshwari 7Deepak Maheshwari 7

Hi,

 

You can use add below function in rule criteria:

 

NOT(ISNEW())

 

This was selected as the best answer
Anurag SaxenaAnurag Saxena
Hi Sandrine,

Refer these link:
https://success.salesforce.com/answers?id=90630000000ghXoAAI

https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_variables_functions.htm (https://success.salesforce.com/answers?id=90630000000ghXoAAI)

Hope it will help you :)

thanks