I have a SharePoint List that is titled "Checklists".
- On this Checklist I have a column called "Form Name" where it lists every checklist name.
On my Power App I have a combo box that is titled "Checklist(s)"
- It allows me to select multiple checklists
- It allows me to search checklists
- It pulls the checklists from the "Form Names" column of my SharePoint list "Checklists"
I am trying to collect the data from the "Checklist(s)" combo box in my app and have it input that information (all selected items) into a column of a different list on my SharePoint site when the file is saved.
Currently, it does not save that information and I have my app as:
OnSelect= Collect('New Form Name', { Checklists: NewChecklistComboBox.SelectedItems})
Any help would be appreciated.