I’m attempting to be clever
What I am trying to do is to populate a combobox from a recordset. I had:
cboCust1.RowSource = Me.sbfPOforCurrentJobs1.Form.RecordsetClone
but think that I need to define a field within the recordset.
I have a subform that I have set a filter on. I want to populate a combobox from the the filtered subform with the afterupdate event adding the selected value to the existing filter and then re-applying it.
I hope this makes sense!
Edit: ok, I tried this:
cboCust1.RowSource = Me.sbfPOforCurrentJobs1.Form.RecordsetClone.Fields(“Customer”)
and got the first customer from the list, how do I get all of them?