DoCmd.OutputTo acOutputForm, "Lookup Subform", acFormatXLS, , True
Can someone point me in the right direction. Thanks in advance.
Jeanette Cunningham
"meyerryang" <meyer...@discussions.microsoft.com> wrote in message
news:7A3C19DB-DA4D-406D...@microsoft.com...
Do you know how to create the recordset? Thanks.
I have never tried to export a recordset - so can't advise on this.
Jeanette Cunningham
"meyerryang" <meyer...@discussions.microsoft.com> wrote in message
news:F35B1A72-A5A6-41B8...@microsoft.com...
"meyerryang" <meyer...@discussions.microsoft.com> a écrit dans le message
de groupe de discussion :
7A3C19DB-DA4D-406D...@microsoft.com...
Why not just pull the data into a temp table in Access and run your queries
off of that temp table, rather than trying to filter the linked tables? It
might take a little longer, but it shouldn't take much longer than what
you're doing now, and it would be considerably less troublesome than trying
to query the linked tables directly. Plus you get the added benefit of only
having to access those tables once and then the time to process any
subsequent queries on them is reduced to almost nothing. Just update those
temp tables every few hours or so, depending on how often the tables they're
based on change. (Unless of course those linked tables are changing every few
seconds, in which case this might not work for you.)