A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Running & Setting Up Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Duplicate entries in a query



 
 
Thread Tools Display Modes
  #1  
Old July 4th, 2008, 07:41 PM posted to microsoft.public.access.queries
Oldsfan
external usenet poster
 
Posts: 7
Default Duplicate entries in a query

Hi. I don't know if I can explain what I'm trying to do. Maybe I'm over my
head.

I've got a car club database. One table is name/address information. Another
table is year/make/model information. The third is the joining table, putting
members and cars together. Some members have no cars. Some members have more
than one.

I am trying to print a roster in Word, listing name/address/cars owned.

When I run my "directory" query, I get, for myself as an example:

Paul H, address, phone, 55 Olds
Paul H, address, phone, 62 Olds

When I pull this over to word, it looks like this:

Paul H
address
phone
55 Olds

Paul H
address
phone
62 Olds

Is there a way to get it to look like this?:

Paul H
address
phone
55 Olds
62 Olds

I tried running my "Directory" query with a "Vehicles Owned" subdatasheet.
My query results look like this:

Paul H, address, phone
+55 Olds
+62 Olds

But Word won't pick up the data from the subdatasheet.

I end up having to manually deleting all the duplicate name/address
information in Word. This is time consuming - some people have a dozen or
more cars!

Or should I be addressing this on the Word forums?
  #2  
Old July 4th, 2008, 09:14 PM posted to microsoft.public.access.queries
John Spencer
external usenet poster
 
Posts: 2,364
Default Duplicate entries in a query

One solution would be to use Duane Hookom's concatenate function to
string the cars together in one field
62 Olds, 55 Olds, 1923 Ford Model-T

Google Access Groups for Hookom + Concatenate to get a URL reference to
Duane's sample database.

'================================================= ===
John Spencer
Access MVP 2002-2005, 2007-2008
The Hilltop Institute
University of Maryland Baltimore County
'================================================= ===


Oldsfan wrote:
Hi. I don't know if I can explain what I'm trying to do. Maybe I'm over my
head.

I've got a car club database. One table is name/address information. Another
table is year/make/model information. The third is the joining table, putting
members and cars together. Some members have no cars. Some members have more
than one.

I am trying to print a roster in Word, listing name/address/cars owned.

When I run my "directory" query, I get, for myself as an example:

Paul H, address, phone, 55 Olds
Paul H, address, phone, 62 Olds

When I pull this over to word, it looks like this:

Paul H
address
phone
55 Olds

Paul H
address
phone
62 Olds

Is there a way to get it to look like this?:

Paul H
address
phone
55 Olds
62 Olds

I tried running my "Directory" query with a "Vehicles Owned" subdatasheet.
My query results look like this:

Paul H, address, phone
+55 Olds
+62 Olds

But Word won't pick up the data from the subdatasheet.

I end up having to manually deleting all the duplicate name/address
information in Word. This is time consuming - some people have a dozen or
more cars!

Or should I be addressing this on the Word forums?

  #3  
Old July 5th, 2008, 05:50 PM posted to microsoft.public.access.queries
TedMi
external usenet poster
 
Posts: 507
Default Duplicate entries in a query

Another possibility is to use an Access report, with a subreport in each
detail section bound to the car table, with the owner ID as the linking field
--
TedMi

  #4  
Old July 6th, 2008, 01:10 PM posted to microsoft.public.access.queries
Ken Sheridan
external usenet poster
 
Posts: 3,433
Default Duplicate entries in a query

An Access report rather than a Word document is the simplest method. You
don't need a subreport. Base the report on your query and group the report
by member. Put all the member data in a group header and the car data in the
detail section.

Tip: If you do use a report group the report first by the member's name and
then by the unique MemberID (or whatever) primary key column. Give the
MemberID group a group header, not the member name group, and put the
member's name, address etc in this group header. This will separate any
members who have the same name, but still order the report by name.

To do it via Word John's suggestion is the simplest way. However, you want
to list the cars one per line rather than concatenating them into a single
line, so you'd need to insert carriage returns/line feeds rather than
commas/spaces. A Function like this should do it; paste it into a standard
module and then change the table and field names to your own as necessary:

Public Function ListCars(lngMemberID As Long) As String

Dim rst As ADODB.Recordset
Dim strSQL As String
Dim strCarList As String

strSQL = "SELECT YearManufactured, Make, Model, Description " & _
"FROM Cars INNER JOIN Ownership " & _
"ON Cars.CarID = OwnerShip.CarID " & _
"WHERE MemberID = " & lngmemberID

Set rst = New ADODB.Recordset

With rst
.ActiveConnection = CurrentProject.Connection
.Open _
Source:=strSQL, _
CursorType:=adOpenForwardOnly

Do While Not .EOF
strCarList = strCarList & vbNewLine & _
.Fields("YearManufactured") & ", "_
.Fields("Make") & ", " & _
.Fields("Model") & ", " & _
.Fields("Description")
.MoveNext
Loop
.Close
' remove leading cr/lf
strCarList = Mid$(strCarList, 3)
End With

ListCars = strCarList

End Function

You can then call the function in a query such as this:

SELECT FirsName, Lastname, Address, Phone,
ListCars(MemberID) As CarsOwned
FROM Members
ORDER BY LastName, FirstName;

If you have any problems post back with the exact names of your tables and
their fields and data types.

Ken Sheridan
Stafford, England

"Oldsfan" wrote:

Hi. I don't know if I can explain what I'm trying to do. Maybe I'm over my
head.

I've got a car club database. One table is name/address information. Another
table is year/make/model information. The third is the joining table, putting
members and cars together. Some members have no cars. Some members have more
than one.

I am trying to print a roster in Word, listing name/address/cars owned.

When I run my "directory" query, I get, for myself as an example:

Paul H, address, phone, 55 Olds
Paul H, address, phone, 62 Olds

When I pull this over to word, it looks like this:

Paul H
address
phone
55 Olds

Paul H
address
phone
62 Olds

Is there a way to get it to look like this?:

Paul H
address
phone
55 Olds
62 Olds

I tried running my "Directory" query with a "Vehicles Owned" subdatasheet.
My query results look like this:

Paul H, address, phone
+55 Olds
+62 Olds

But Word won't pick up the data from the subdatasheet.

I end up having to manually deleting all the duplicate name/address
information in Word. This is time consuming - some people have a dozen or
more cars!

Or should I be addressing this on the Word forums?


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:36 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.