Hi,
I am developing a few tools, one of which is data entry from surveys (equipment, site name etc.) which takes the input data and adds this to a new line in an excel table, data_Surveys. I have another tool which can output from a second excel table, equipData, which I have included as a datasource within the app. The allowable 'equipment' in the data entry tool includes all the equipment listed in equipData for consistency.
I'd like to be able to, in my output tool, have a combo box to select one of the lines from the data entry table, data_Surveys, which then fills in the relevant information in my output tool. I have had a good go at this, but keep getting stuck when it comes to updating the series of combo boxes. See below a screenshot of the output tool form:

The 'populate from survey' combo box correctly updates the site textbox and the date, but I can't seem to get the Loc1-5 or PM combo boxes to update with data from the selected site. For example, in the Default property for the Site textbox, I have the following expression:
"If(IsEmpty(ComboBox1.SelectedItems),"",Concat(ComboBox1.SelectedItems,Site))"
This correctly updates the Site textbox.
How do I update the comboboxes to the same effect?
The column in data_Surveys that I want to extract data from for the Loc 1 combobox is 'Loc1_Meter', whereas in equipData, the column with the same information type is 'SLR_ID'. Please help!