Multiple Criteria

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to prompt the user for a number of entries to use as the
criteria for an excel query: we want to prompt the user for a number of
zipcodes (not in series) to use as the query selection.
 
Untested, but I would think You would cocatenate a sting of zipcodes into an
sql string like below (partial)
v = "22032,63124,22334,55444"

.. . .

" . . . where tablename.zip In (" & v & "), . . . "
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top