Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refilter Report On The Fly?

Status
Not open for further replies.

DAmoss

Technical User
Jul 23, 2003
169
GB
I have a popup form that lets me enter the Start & End dates which I then filter a report by. The popup stays open until I hit the close button.

Is there a way to refilter the open report if I enter new dates?

Do I need to close the the report and reopen it? If so, how do I check that the report is already open?

Cheers
 
If you use something like this:
Code:
Private Sub Test_Click()
    DoCmd.OpenReport "MyReport", acViewPreview
End Sub

It shouldn't matter whether it is open or not. Give it a try.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top