Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Community Forums
 Community Discussions (All other subjects)
 Duplicate Rrecords In Access Report

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
Before posting, make sure you have read this topic!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
msmith974 Posted - 29 October 2008 : 11:37:02
I created an Access application and I am running into some problems...

I would like to generate an output report based off of multiple tables in the database, using one joined field to locate the records. I have created the report and based it on a query that queries the three tables and returns all the matching records based off of the one joined field, which I have the user inputting via a parameter window (at the run-time of the query)...To do this I had to set the table relationships up so that they are all related based on the joined field I designated. When I run the query it works, but it returns multiples of the same record; probably because they are joined by that one field. The problem I am having is that these duplicate records are also appearing in the output report I have access generating. (i.e.- I am getting multiples of the same record on the report & I do not want that). FYI- the report fields (labels/text boxes) are pulling from fields within the query I set up. I tried to alter the report properties to "hide duplicates" but that does not seem to work. Any assistance would be greatly appreciated, as I am not a DBA by trade, so this is all fairly new to me. So I assume I am just doing something wrong. Below is the SQL statement I used to query the three tables and as the end result output to the custom report.


Here is my SQL statement:


SELECT DWGS.DWGS, Specs.Specs, DWGS.[Date Entered], Specs.[Date Entered], DTs.[Date Entered], DWGS.[DWG Number], Specs.[Specs Number], DWGS.[DWG Rev Number], Specs.[Specs Rev Number], DWGS.Quantity, Specs.Quantity, DWGS.[Trans Number], Specs.[Trans Number], DTs.Subject, DTs.[DT No], DWGS.[DWG Title], Specs.[Specs Title]

FROM (DWGS INNER JOIN Specs ON DWGS.[Trans Number] = Specs.[Trans Number]) INNER JOIN DTs ON (Specs.[Trans Number] = DTs.[DT No]) AND (DWGS.[Trans Number] = DTs.[DT No])

WHERE (((DWGS.[Trans Number])=[Enter Document Trans Num, (ex: DT-001)]));



The three tables are named: “DWGS”, “Specs”, “DTs”

The Query asks the user to input the “Trans Num”, which is the field that the three tables are joined by (this field is named “DT No” in the DTs table)…This field is the one that will locate the associated records. The output report is set up to list the following fields from the database based on the query:

DWGS.[DWG Number], Specs.[Specs Number], DWGS.[DWG Rev Number], Specs.[Specs Rev Number], DWGS.Quantity, Specs.Quantity; using the linked label/text boxes on the report. The query does work and returns the proper records, but it returns duplicates of the same record in the table and on the output report, which is not what I need. Could you possibly take a look at my SQL and see what I am doing wrong? I am fairly new with SQL, and I am probably doing the join incorrectly. Thanks in advance.

<
2   L A T E S T    R E P L I E S    (Newest First)
Carefree Posted - 30 October 2008 : 02:00:15
I have to be able to see results for my Sql issues, but it seems to me that you're querying a field twice. The entire bit in red below is duplicated. See if eliminating that doesn't resolve it.

quote:
FROM (DWGS INNER JOIN Specs ON DWGS.[Trans Number] = Specs.[Trans Number]) INNER JOIN DTs ON (Specs.[Trans Number] = DTs.[DT No]) AND (DWGS.[Trans Number] = DTs.[DT No])
<
Doug G Posted - 30 October 2008 : 00:32:53
With Access 2000 anyway there is a 'Duplicate' wizard that can help you build a query for duplicate records.
<

Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.05 seconds. Powered By: Snitz Forums 2000 Version 3.4.07