The Multi-Valued field refers to Access databases with column tables that allow you to select multiple values, such as a Combo Checkbox list.
THOSE are the only access types that SQL cannot work with. I tested all of Access's search capabilities, including hard-coded values and lookup tables. They work fine, but if you have a column with Allow Multiple select options, you're out of luck. Even using INSERT INTO, as indicated below, will not work, since you will get a similar but different error about INSERTing in multi-valued fields.
As already mentioned, it is best to avoid using such tables outside Access and refer to the table specifically for your external needs. Then write a macro / vba script to update real tables with data from the "auxiliary" table.
Fandango68
source share