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
vikas rathi91vikas rathi91 

Function ISCLONE may not be used in this type of formula

User-added image
using refrence from https://help.salesforce.com/articleView?id=customize_functions_i_z.htm&type=5

Any other work around please shaire 
sowmya Inturi 9sowmya Inturi 9
Hi,
Please specify your requirement clearly. What you exactly want to do with the isClone() function.
Asitha_RajuAsitha_Raju
Hi,
 Isclone() function is not available in a formula field. You can use workflow to implement your requirment by creating a custom checkbox. 
1. Create a Custom Field on the object you would like to view cloned records.
       a. Select Data type: Checkbox.
2. Create a Workflow Rule on the object on which you want to find whether the record is cloned or not.
       a. Evaluation Criteria: Evaluate the rule when a record is created, and every time it's edited.
       b. Rule Criteria: ISCLONE ()
       c. Click Field Update Action
       d. Field to Update: Select the Custom Checkbox field.
       e. New Field Value:
                  Select Use a Formula to set the new value: TRUE
       d. Click Save and Activate the rule.
So, this will help to identify whether a record is Cloned or not. 
Now, this checkbox value can be evaluvated in the formula field to identify whether the record is cloned or not.

Hope this works for you.
Thanks.
 
vikas rathi91vikas rathi91
@Asitha Raju 6

Thanks Man

I am Using .
Evaluation Criteria: Evaluate the rule when a record is created

Thanks Again to correct me.
Asitha_RajuAsitha_Raju
Hi accky,
Happy it worked for you. Could you please mark it as the best answer so that others could refer the same in need.
Thanks.
Gabriel VigoritoGabriel Vigorito
Hi Guys, i dont find the Isclone function in thew workflow rule criteria, i need to do it in a formula?