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
Karthik Kota 9Karthik Kota 9 

Is New () or IS changed() want to met the both the criteria in process builder ! this is my query but iam unable to find the IS New () can u help me out

Best Answer chosen by Karthik Kota 9
Vivek C 1Vivek C 1
Hi Karthik,

If u want to bind both the IsNew() and ISchanged() functions in your process builder. 
Click on the Fromula evaluates true -> All Function Catagoreis and then then you can find the both IsNew and IsChanged functions over there.

User-added image

Regards,
Vivek

All Answers

Amit Singh 1Amit Singh 1
Hello Karthik,

There is no method IsNew() in Process Builder. If you want to execute your process builder when your record is created or updated then use "when a record is created or edited" while selecting the object for which you want to create Process Builder. And then you can select ISChanged for your field.

Let me know if this helps :)
Thanks,
Amit Singh
Vivek C 1Vivek C 1
Hi Karthik,

If u want to bind both the IsNew() and ISchanged() functions in your process builder. 
Click on the Fromula evaluates true -> All Function Catagoreis and then then you can find the both IsNew and IsChanged functions over there.

User-added image

Regards,
Vivek
This was selected as the best answer
Karthik Kota 9Karthik Kota 9
Hi Vivek 

Then i want update the field into Upper case ?? can u tell me i am not finding the option UPPER
Vivek C 1Vivek C 1
Hi Karthik,

You can find the same UPPER function inside the All Function Catagoreis. 

User-added image

Regards,
Vivek C
Karthik Kota 9Karthik Kota 9
Thanks Vivek !!
got the solution 

One more think where we find NOT ISBlank ???
Vivek C 1Vivek C 1
Fom the Logical category -> Select Not 
User-added image

From the All function categories -> select ISBLANK

User-added image

Hope this meets your requirement !!!
Karthik Kota 9Karthik Kota 9
Thanks Vivek !!