Hi I have a form in my PowerApps screen and a Gallery!

on the onselect of my Add button I have added following and my gallery items is My collection
Collect( MyCollection, { Skill: DataCardValue39.Text, // Assuming DataCardValue39 is a text input control ProficiencyLevel: DataCardValue36.Selected.Value, ExperienceLevel: DataCardValue38.Selected.Value } );
Gallery Lable controls are Label6_3 :Text Property ThisItem.Skill same for the following
what Iam really looking is I want record these collection as new record in my Data Source , ( Each skill should be a new record )
but Iam unable to do it , tried using the following patch function which is not working properly
Could Anyone please help me to fix it
ForAll(
MyCollection,
Patch(
'New tables',
Defaults('New tables'),
{
'Emp ID': DataCardValue20_1.Text,
'Employee Name': DataCardValue25_1.Text,
'Official Email ID ': DataCardValue27_1.Text,
Skills: Label6_3.Text,
'Proficency Level': Label6_4.Text,
'Expereince ': Label6_5.Text
}
)
);