Hello together,
I have a gallery which allows user to select via CheckBox. I collect these information with Collect(colAuditCriteria, Lbl_E_GL_AuditCriteria_ClauseNumber_A0_1.Text). Then I save it to Sharepoint List in PlanText Column by Concat(colAuditCriteria, Value & "; ").
There is another page which includes total SharePointList. User select from Gallery to edit this item. I am trying to create the same collection by ClearCollect(colAuditCriteria,Split(GL_AuditList_A0_3.Selected.'Audit Criteria Clause Number',";")) and then user supposed to edit the item again. But I could not manage this. Because when I have created colAuditCriteria from SharePoint List, it stored under Result Column. But when I select Checkbox to add or remove items from ColAuditCriteria it store under Value column. What should I do? please help?