for each referral in related_referrals { row1 = Update_Deal_Referrals.Referrals(); /// Referrals is subform name row1.Community=referral.Community; row1.Community_Emails=referral.Referral_Emails; row1.Status=referral.Status; row1.Referral_Sent=referral.Referral_Sent; row1.Last_Update_Sent=referral.Last_Update_Sent; row1.Include_Updates=referral.Include_Updates; row1.Notes=referral.Notes; row1.Referral_ID=referral.ID; rowcollection = Collection(); rowcollection.insert(row1); input.Referrals.insert(rowcollection); }