How can I make this work in a query:
PARAMETERS [tblname] TEXT;
INSERT into [tblname] . . .
I know I could build SQL in the VBA and go from there, but this seems more
elegant.
Thx.

Signature
Bill
Ken Snell (MVP) - 05 Nov 2006 00:28 GMT
You cannot do this in a stored query using a parameter. You'll need to use
VBA code to generate an SQL statement string on the fly.

Signature
Ken Snell
<MS ACCESS MVP>
> How can I make this work in a query:
>
[quoted text clipped - 5 lines]
>
> Thx.