Insert Bulk Accounts and 5 Contacts to Each Account Post author:Swapnil Jaiswal Post published:January 5, 2025 Post category:Blog / Salesforce Post comments:0 Comments Code Snippet to Bulk Insert Accounts and 5 Contacts to Each Account. Execute the below script in developer console. It will create 5 Accounts records and each Account have 5 Contacts. For(integer i=0; i<5; i++) { Account acc = new Account(Name='Bulk Account '+i, AccountNumber='919102'+i, Rating='Hot'); Insert acc; For(integer j=0; j<5; j++) { Contact con = new Contact(LastName=acc.Name +' Contact '+j, AccountId=acc.Id); Insert con; } } You Might Also Like Get all objects available on polymorphic field December 13, 2022 Kcloud – Salesforce Developer Interview Questions December 18, 2024 Data Types in C and C++ with RAM Visualization July 7, 2024 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.