Hi,
I have gallery with some data pulled from skill requirements data source: Job type, Job profile, Skill and Skill ID
Level and Level in number are not from data source.
Level is dropdown with predefined levels in words.
Level in number is text label with if function inside.

I am trying to patch this data to assessment datasource/storage.
I was able to patch all data except score value.
Is it possible to write scores, in the row with appropriate Skill_ID?
ForAll(
GallerySkills.AllItems,
Patch(
Assessment_data,
Defaults(Assessment_data),
{
Title: "Assessment",
Employee:User().FullName,
AssessmentBy:User().FullName,
AssessmentID:AssessmentID.Text,
SkillID: Skill_ID,
RowCount:Value(NewRowCount.Text)
}
)
)
Thanks in advance!