What is the data type of the multiselect field? Could you share the Items proeprty of combo box?
Do you mean you want to fill that field through selecting the gallery?
If the multiselect field is a LookUp field, and the field is a lookup to the Title of image gallery data source, please try this:
1. Set OnSelect property of Gallery:
Collect(MyCol, {Id:Gallery.Selected.ID})
2. Set DefaultSelectedItems property of Combo box:
Filter(Choices('SP list'.FIeldName),Id in MyCol.Id)
or
If(IsEmpty(MyCol), Parent.Default, Filter(Choices('SP list'.FIeldName),Id in MyCol.Id))// to show the default selections
3. Set OnChange property of combobox:
ClearCollect(MyCol,DataCardValue1.SelectedItems.Id)
Sik
@v-siky-msft Thanks for the response!
I'm new the powerapps game, so I'm sorry if i'm vague with my response.
The combo box Items property is set to the sharepoint image gallery and yes that's exactly what I'm trying to do is fill the field when selecting one or multiple items from the gallery but the only info from the gallery I need is the title information.
Thanks
Could you share the data construct of custom form?
I need to know what is the data type of combobox field. Does it a Lookup field?
Sik
The combo box field is a lookup field to the gallery datasource.
The construct to the custom form is 2 datasources/2 list. List A is where I would like the data to be stored, List B is set as a gallery that I would like to select, on selection show selected back to the combobox field. When save/submitted write the data back list A.
So I was able to achieve show the gallery selection using this formula below:
Patch('SP List b', gallery.selected, {'column name':ComboBox1.SelectedItems}) then setting the combobox1 "defaultselecteditems" properties to gallery.selected.columnname and "Items" to choices('sp list b'.columnname)
I'm not sure why using "selecteditems" control isn't reflecting multiple selections in the combobox, The column field of list b is set to multiple choices.
My next question is how can I take what's being patched from list b when a user submits the new form using the default save update the on list A and not modify list b?
Thanks Again
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
203 | |
187 | |
81 | |
50 | |
37 |
User | Count |
---|---|
290 | |
244 | |
122 | |
74 | |
55 |