B
Bradley
Hi
I have 4 separate tables of which all have fields "Surname", "Forename" and
"DOB", plus the data column.
Tbl_0 = S | F | DOB (this is all 5 users)
Tbl_1 = S | F | DOB | Data1
Tbl_2 = S | F | DOB | Data2
Tbl_3 = S | F | DOB | Data3
Index above = S (Surname)| F (Forename) | DOB | Data
I can build individual queries like;
Tbl_0 & 1 which lists all the Users that have a Data1 enter - Totaling 1
Tbl_0 & 2 which lists all the Users that have a Data2 enter - Totaling 2
Tbl_0 & 3 which lists all the Users that have a Data3 enter - Totaling 2
My problem is that I want to see them all in one table.
For Example;
Users | Data1 | Data2 | Data3
-----------------------------------
Joe text - -
Bill - text text
John - - text
Bob - text -
Peter - - -
Peter should not even show in the list above, because he doesn't have any
data to display.
If this is possible how should I build the Query?
Regards
Bradley
I have 4 separate tables of which all have fields "Surname", "Forename" and
"DOB", plus the data column.
Tbl_0 = S | F | DOB (this is all 5 users)
Tbl_1 = S | F | DOB | Data1
Tbl_2 = S | F | DOB | Data2
Tbl_3 = S | F | DOB | Data3
Index above = S (Surname)| F (Forename) | DOB | Data
I can build individual queries like;
Tbl_0 & 1 which lists all the Users that have a Data1 enter - Totaling 1
Tbl_0 & 2 which lists all the Users that have a Data2 enter - Totaling 2
Tbl_0 & 3 which lists all the Users that have a Data3 enter - Totaling 2
My problem is that I want to see them all in one table.
For Example;
Users | Data1 | Data2 | Data3
-----------------------------------
Joe text - -
Bill - text text
John - - text
Bob - text -
Peter - - -
Peter should not even show in the list above, because he doesn't have any
data to display.
If this is possible how should I build the Query?
Regards
Bradley