Run Query with only one form and table

  • Thread starter Thread starter tom
  • Start date Start date
T

tom

In an effort to reduce the clutter of objects in
my database, I want to design a form with
a control box that holds the date and then
the form will show only invoices with that date.

Is this possible, or are do you need to create one
more object?
 
What you're describing should work.

Once you've selected the date, apply a filter to the form:

Me.Filter = "InvoiceDate = " & Format(SelectedDate, "\#mm\/dd\/yyyy\#")
Me.FilterOn = True
 

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.

Ask a Question

Back
Top