Hello,
I am currently trying to make it easier for my colleages to filter when opening a report. We have made a database of internet users etc. I have set a search box which should filter on all tables in my data query. This is the part where i am stuck as im not into access that much anymore.
The code im using at the moment is as following:
Is there a way to connect all tables to the search so that if any field contains (for example) room number 110 it will only show the report with all computers using internet in room 110. I have though of making a listbox to mark in what table the search/filtering should take place.
Any help or direction to where i might find something that can help me on my way would be appreciated.
Thanks in advance.
I am currently trying to make it easier for my colleages to filter when opening a report. We have made a database of internet users etc. I have set a search box which should filter on all tables in my data query. This is the part where i am stuck as im not into access that much anymore.
The code im using at the moment is as following:
Code:
Private Sub OpenReport_Click()
DoCmd.OpenReport "Overzicht", acViewReport, , Me.Filter = "[Search]", Me.FilterOn
End Sub
Any help or direction to where i might find something that can help me on my way would be appreciated.
Thanks in advance.