
Announcements
Above is a Gallery I have named 'Product Record Gallery', Items for which is = to the dataverse 'Project Record Lists'
The Combo Boxes below: 'Design Characteristics Choice' and 'Product KC Choice' pull from a dataverse I named 'Product Records'. Though from different columns.
Each of the three combo boxes named 'First Inspection Choice', 'In-progress Inspection Choice', & 'Final Inspection Choice'
inspections pull from the dataverse named 'Measurement Techniques'. All from the same Column.
I would like to have my save button coded so that when I click it it saves the entries in the five combo boxes and the Text Input all get saved to the same dataverse 'Project Record Lists', and all to different Columns.
Hello @G0Springs,
Hope you are doing good, you can try below Code
ForAll(Gallery2.AllItems,
Patch('PROJECT RECORD LISTS',ThisRecord,{
'Characteristics':DropDown1.Selected,
'Product KC':DropDown2.Selected,
'Feature':textBox1.Selected,
'First Inspection':DropDown3.Selected,
'In-Progress':DropDown4.Selected,
'Final Inspection':DropDown5.Selected,
}))
In the Above code, am getting all the Items from the GALLERY and Patching it to the Respective Table's Gallery
Gallery2 --> Provide your gallery name
'PROJECT RECORD LISTS' --> Your table Name
DropDown1/DropDown2/DropDown3/DropDown4/DropDown5 --> Your Drop down name
textBox1 --> Feature Textbox name from Powerapps
Let me know if you have any query so that i can clarify the same
Please mark as Answer if it is helpful and provide Kudos
Subscribe : https://www.youtube.com/channel/UCnGNN3hdlKBOr6PXotskNLA
Blog : https://microsoftcrmtechie.blogspot.com