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
BhmBhm 

Insert contacts only checked records

Hi All,

 

           My requirement is insert contacts  when a checked records

a custom chechbox how to write a trigger?

 

 

Thanks in advance.

amidstcloudamidstcloud
for (Contact C: Trigger.new){
if ( c.checkbox == false)
adderror ();
}