microsoft access training courses - queries and reports

TrustPilot

starstarstarstarstar Excellent

  • Home
  • Courses
  • Promotions
  • Schedule
  • Formats
  • Our Clients

Forum home » Delegate support and help forum » Microsoft Access Training and help » microsoft access training courses - Queries and reports

microsoft access training courses - Queries and reports

resolvedResolved · Low Priority · Version Standard

Dylan has attended:
Access VBA course

Queries and reports

I am creating a report but need 'values' that have been returned from more than one query (4 in fact). When I try and create a query from the 4 different queries and use this for my report it doesn't work? Any help would be welcomed. Many thanks

RE: queries and reports

Hi Dylan,

I would suggest collecting the results of the 4 queries together using a combination of first a Maketable and then Append Queries.

Once the query results are gathered together in a table, then a report can be created based on this new table.

Regards



 

Access tip:

Open A Combo Box Automatically

This is helpful if users need to enter large amounts of data. There are two ways to open ComboBoxes when they get the focus by using the tab keys.

When the ComboBox gets focus:

Press Alt + Down Arrow on the keyboard

For it to happen automatically, needs a bit of coding:

1. Add a combo box and a text box control to the form
2. Set the combo box's On Got Focus property to the following event procedure:

Private Sub ComboBoxName _GotFocus()

Me!ComboBoxName.Dropdown

End Sub


3. Open your form in Form View and use the TAB key to make sure it works.

View all Access hints and tips


Server loaded in 0.06 secs.