Hi All,
I have a gallery where a check box and combo box is there. When check box is selected that respective value loads in the Combo box. For Ex. (If the check box value is design then combo box value has 3 items and If the check box value is development then combo box value has 1 items).
When + icon is clicked I want to load rows in gallery based on the check box selected and the items in the combo box. For Eg. (if check box value selected value is design & development then the combo box will be having total of 4 values. So 4 rows must be added in the gallery).
The code now written in the + icon is:
Collect(colFinalPhase,Patch, Patch(varNewPhaserecord,{ID: vartest, 'Project Name': prjnames_3.Selected.ProjectName}));
I need to load the rows in this gallery which has collection name as colFinalPhase which is above.
This vartest is a set variable to collect the number of checkbox collected in the gallery.
Set(vartest, CountRows(Filter(Gallery2.AllItems,Checkbox2.Value = true)));
Any idea/suggestion how this can be implemented.