Export data from filtered subform to Excel ?

  • Thread starter Thread starter juvi
  • Start date Start date
J

juvi

Hello,

I have got a form with a subform. The subform's recordsource is a saved
query, which selects data from some tables. The user has the option to filter
the form which I implemented with:

'SQLstr is my filter string
Me.ufo_reports.Form.Filter = SQLstr
Me.ufo_reports.Form.FilterOn = True

This works fine. But now I want to export the filtered data to Excel. I use
the following code, but it exports me everytime the full data (not filtering):

'ufo_reports is the subform
DoCmd.OutputTo acOutputForm, "ufo_reports", acFormatXLS, "ufo_reports.xls",
True

Why is this not working and how can I export the filtered data to Excel? thx
for any help in advance.

BR
juvi
 
Back
Top