You could build a front-end which linked to tables in all three
databases, and create a UNION query and filter that. (Although some
things you can't do with Unions, and I haven't tried this out!).
Bit of an odd thing to do. Suggests your three databases ought to be
one, perhaps.
It is possible to search in an external database. The SQL in the query might
look something like this:
SELECT *
FROM [C:\Database\Data.mdb].tblAddresses;
Notice the square brackets around the path to the table. You can use code or
a union query to return your results. You can also link the tables from the
other databases and build a union query, then search within that query.
--
Arvin Meyer, MCP, MVP http://www.datastrat.com http://www.mvps.org/access http://www.accessmvp.com
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.