Hi,
I have produced a collection to capture data entered into certain fields. Now I am trying to submit to a list, but I am having issues with two data fields that are drop-down selections. at first I had issues with the sections being captured in the 'Collection" table, where it was just bringing back [object Object] but resolved that by adding .Selected.Value and that fixed the issue. but now I am trying to send it to the list via a submit button, it does not like any of the parameters for the two drop-down field that I have to pass through. All other fields work.
This is my "onSelect" so far (still needs some final work around the thankyou and navigate, but that will be easy to do)
ForAll(
Equipmentregister2,
Patch(
'Safety-TRAM Equipment Register',
Defaults('Safety-TRAM Equipment Register'),
{
'Equipment Number': Equipment,
'Equipment Type': Type,
'Equipment currently being used': CurrentlyUsed,
'Last Maintenance Date': LastMaintenceDate,
'Maintenance due date': MaintenanceDueDate,
'Property Address': TextInputAddress_1.Text,
State: TextInputState_1.Text,
Program: TextInputProgram_1.Text,
Region: TextInputRegion_1.Text,
'House Email Address': TextInputSiteContactEmail_1.Text,
'Property ID': Value(TextInputpropertyID_1.Text)
},
Form_PersonDetails_1.Updates
)
)
The above works, but as soon as I try to bring in the OwnedBy and Maintenancefrequency which is data from a drop down selection, it does not work, no matter what I try. I have tired .Selected .Selected.Value Value(OwnedBy.Selected)......

Hope someone can help out, happy to work with someone to see what the issue may be and what I am missing, thanks in advance