ms access training - i woul like know

Public Schedule Face-to-Face & Online Instructor-Led Training - View dates & book

Forum home » Delegate support and help forum » Microsoft Access Training and help » ms access training - I woul like to know more about connecting relationship?

ms access training - I woul like to know more about connecting relationship?

resolvedResolved · Low Priority · Version Standard

Jeannie has attended:
Access Intermediate course
Access Advanced course

I woul like to know more about connecting relationship?

I could not find the way to joint the two or three relating deta to be joint together.

Edited on Fri 20 Jul 2007, 10:42

RE: I woul like to know more about connecting relationship?

Using SQL you can achieve this.

Use a SELECT QUERY to select the data from the different tables and use the UNION command tojoin them together.

So, it looks like this:

SELECT [Table1.field1],[Table1.field2],[Table1.field3],
FROM Table1
UNION
SELECT [Table2.field1],[Table2.field2],[Table3.field3],
FROM Table2

Field 1, 2, and 3 must be the same data type


 

Access tip:

Convert A Form Into A Report

If there is a form that you want to to save as a report:

1. Open that form in Design View
2. Select File and Save As
3. In the Save As Dialog box Select Report

The system creates a report based on the form.

View all Access hints and tips


Server loaded in 0.09 secs.