I am building an app that will group tools by model number and populate the combo box with Model number.
Once user chooses the model number from the drop down list, it will populate the Tools List Box (for that model only, one model many tools).
What I have done so far is added a data source that is SharePoint list. Then added a button and OnSelect I created the collection by this line of code ClearCollect(xyz,GroupBy(ToolsMasterVersion1,"ModelNumber","Name")) then set the combo box Items property to XYZ.
How can I populate the Tools list box with the "Name" for the selected tool from the drop down control?
Is there any better way to achieve this rather than use clearCollect and a command button? I tried to use ClearCollect onStart of screen but it is not allowed. ClearCollect working only with actionable control like button.