linked tables
RH

TrustPilot

starstarstarstarstar Excellent

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

Forum home » Delegate support and help forum » Microsoft Access Training and help » Linked Tables

Linked Tables

resolvedResolved · High Priority · Version 2007

Lorena has attended:
Access Advanced course
Access VBA course

Linked Tables

Hi,
I have some tables linked to another data base and I need to know how to modify that path to link the tables to a different data base.
Thank you!!
Lorena


RE: Linked Tables

Hi Lorena

To modify a link to a table in another database you can right click and choose Delete.

Notice the prompt says this will only remove the link and not delete the table!

Then to link to another table or database select
External Data, Access (in Import group)
Choose Link to a data source by creating a linked table
Click the Browse button and select the location of the database, OK.
Then select the Table to link to and press Ok.

The linked table will now appear with a small blue arrow at the top left of the table icon.

There is also an option called Linked Table Manager when you right click the icon. This allows you to refresh a link but unfortunately not actually change it.

Please let me know if this helps and answers your question about changing link locations.

Regards
Doug Dunn
Best STL

RE: Linked Tables

Thanks a lot Doug, question answered.


 

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.05 secs.