0
votes

I need to know how to update the value of a multi-value combo box in MS Access? I have a continuous form where each record contains a multi-select combo box. What I'm needing to do is do an UPDATE of all Similar records on the form in the AfterUpdate() proc of that combo box.

I'm currently doing this with UPDATE sql on a form that has a regular combo box. However, I get an error stating "An UPDATE or DELETE query cannot contain a multi-valued field." So I need another option.

I can simply run a loop through the records in the recordset, but I was hoping for a more eloquent solution. :-)

Thoughts?

1
I would not use multi-value fields unless you are using Sharepoint. All they do is make life difficult. If you really must, read up a little office.microsoft.com/en-ie/access-help/…Fionnuala

1 Answers

1
votes

Wow, I found the answer....

DON'T USE MULTI-VALUE COMBO BOXES!!!

...now to redesign....