D
Daniel Pineault
Hello,
I have a table setup like
[Hist ID],[First Name],[Last
Name],[Address1],[City],[Prov],[Country],[Postal Code],...
Thus I end up with data similar to
123,Henry,Oband,14 grey,Dorval,Qc,CDA,H5P 3C2,...
225,Mary,Sinclair,14 grey,Dorval,Qc,CDA,H5P 3C2,...
758,Marvin,Hemlock,2767 Milot,Laval,Qc,CDA,J7T 8Z4,...
How can I build a quey to group common address information together. In the
above example, Henry and Mary reside at the same address and thus I would
like the query to return somthing in the nature of
[Name],[Address1],[City],[Prov],[Country],[Postal Code]
ie:
Mary Sinclair & Henry Oband ,14 grey,Dorval,Qc,CDA,H5P 3C2
Marvin Hemlock,2767 Milot,Laval,Qc,CDA,J7T 8Z4
Where I group by address and concatenate the First & Last name fields
together into one and eliminate all other fields (only interested in address
listing).
Thank you for the help!
Daniel Pineault
I have a table setup like
[Hist ID],[First Name],[Last
Name],[Address1],[City],[Prov],[Country],[Postal Code],...
Thus I end up with data similar to
123,Henry,Oband,14 grey,Dorval,Qc,CDA,H5P 3C2,...
225,Mary,Sinclair,14 grey,Dorval,Qc,CDA,H5P 3C2,...
758,Marvin,Hemlock,2767 Milot,Laval,Qc,CDA,J7T 8Z4,...
How can I build a quey to group common address information together. In the
above example, Henry and Mary reside at the same address and thus I would
like the query to return somthing in the nature of
[Name],[Address1],[City],[Prov],[Country],[Postal Code]
ie:
Mary Sinclair & Henry Oband ,14 grey,Dorval,Qc,CDA,H5P 3C2
Marvin Hemlock,2767 Milot,Laval,Qc,CDA,J7T 8Z4
Where I group by address and concatenate the First & Last name fields
together into one and eliminate all other fields (only interested in address
listing).
Thank you for the help!
Daniel Pineault