Hi @RandyHayes , absolutely. What I am trying to accomplish is to patch the rest of the gallery selection to a row with multiple columns. For example.
If the user selects the following (radio and added a comment) it will patch to the following column.
| DME | Yes | Added a comment |
| Functional Assessment | No | Added comment |
| Cognitive Status | Yes | Added a comment |
Is this the right formula?
ForAll(
colAuditForm,
Patch(
ChartAuditForm,
Defaults(ChartAuditForm),
frmAudit.Updates,
{
Element:Element,
'Y/N':Y_x002f_N,
Comments:Comments,
ElementDME: ElementDME,
'ElementDMEY/N': ElementDMEY_x002f_N,
ElementDMEComment: ElementDMEComment
}
)
)
I created a collection for my SharePoint List.
ClearCollect(colChartAuditForm,ChartAuditForm)
Then created another collection just to show the columns i needed.
ClearCollect(colAuditForm,ShowColumns(colChartAuditForm,"PCP","Center","Patient","Category","Element","Y_x002f_N","Comments","ElementDME","ElementDMEY_x002f_N","ElementDMEComment"))
SharePoint List

Power Apps Form

What am I doing wrong or missing?
Thank you again for your help.