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  

One-to-Many link shows duplicate records in query.



 
 
Thread Tools Display Modes
  #1  
Old May 18th, 2007, 04:22 PM posted to microsoft.public.access.queries
Scott A
external usenet poster
 
Posts: 67
Default One-to-Many link shows duplicate records in query.

I've got a query that uses form parameters to display a list of records.
Worked great until the client requested that we reference data on the many
side of a one-to-many join.

Now the query shows multiple records for each record on the many side of the
linked table.

What is the best way to limit the query to show only one line for each
record in the primary table?

Any suggestions appreciated.
  #2  
Old May 18th, 2007, 04:38 PM posted to microsoft.public.access.queries
Amy Blankenship
external usenet poster
 
Posts: 539
Default One-to-Many link shows duplicate records in query.


"Scott A" wrote in message
...
I've got a query that uses form parameters to display a list of records.
Worked great until the client requested that we reference data on the many
side of a one-to-many join.

Now the query shows multiple records for each record on the many side of
the
linked table.

What is the best way to limit the query to show only one line for each
record in the primary table?

Any suggestions appreciated.


What is it that you are trying to do? Do you actually want to only show one
of the records from the many side? What criteria do you want to use to
decide which one record is the one you want to display? Or did you want to
aggregate the data from all the records and display, for instance, totals?

There is no way to display all of the records on the many side and then only
have one line on the one side.

HTH;

Amy


  #3  
Old May 18th, 2007, 05:32 PM posted to microsoft.public.access.queries
KARL DEWEY
external usenet poster
 
Posts: 10,767
Default One-to-Many link shows duplicate records in query.

Did you do a left join or inner join? If you did not then that is your
problem.
--
KARL DEWEY
Build a little - Test a little


"Scott A" wrote:

I've got a query that uses form parameters to display a list of records.
Worked great until the client requested that we reference data on the many
side of a one-to-many join.

Now the query shows multiple records for each record on the many side of the
linked table.

What is the best way to limit the query to show only one line for each
record in the primary table?

Any suggestions appreciated.

  #4  
Old May 18th, 2007, 05:43 PM posted to microsoft.public.access.queries
John W. Vinson
external usenet poster
 
Posts: 18,261
Default One-to-Many link shows duplicate records in query.

On Fri, 18 May 2007 08:22:00 -0700, Scott A
wrote:

What is the best way to limit the query to show only one line for each
record in the primary table?


Well, DON'T show users query datasheets.

Instead, display the result in a Form (for the primary table) with a Subform
(for the related table).

John W. Vinson [MVP]
  #5  
Old May 18th, 2007, 08:53 PM posted to microsoft.public.access.queries
Scott A
external usenet poster
 
Posts: 67
Default One-to-Many link shows duplicate records in query.

Good questions - I'm not actually showing any of the data from the many side
of the relationship on the form itself. I'm using the value on the many side
as a parameter. So because I'm not showing any data from the many side, I
don't really care which of the records returned by the query is shown, I
basically want the query to ignore or skip records where there are multiple
records on the many side.

Not doing any aggregates or totals.

"Amy Blankenship" wrote:


"Scott A" wrote in message
...
I've got a query that uses form parameters to display a list of records.
Worked great until the client requested that we reference data on the many
side of a one-to-many join.

Now the query shows multiple records for each record on the many side of
the
linked table.

What is the best way to limit the query to show only one line for each
record in the primary table?

Any suggestions appreciated.


What is it that you are trying to do? Do you actually want to only show one
of the records from the many side? What criteria do you want to use to
decide which one record is the one you want to display? Or did you want to
aggregate the data from all the records and display, for instance, totals?

There is no way to display all of the records on the many side and then only
have one line on the one side.

HTH;

Amy



  #6  
Old May 18th, 2007, 08:57 PM posted to microsoft.public.access.queries
Amy Blankenship
external usenet poster
 
Posts: 539
Default One-to-Many link shows duplicate records in query.


"Scott A" wrote in message
...
Good questions - I'm not actually showing any of the data from the many
side
of the relationship on the form itself. I'm using the value on the many
side
as a parameter. So because I'm not showing any data from the many side, I
don't really care which of the records returned by the query is shown, I
basically want the query to ignore or skip records where there are
multiple
records on the many side.


Could you give a bit more detail here?


  #7  
Old May 19th, 2007, 06:53 AM posted to microsoft.public.access.queries
Scott A
external usenet poster
 
Posts: 67
Default One-to-Many link shows duplicate records in query.

The continuous form shows a list of students. I'm using unbound combo boxes
on the form to select parameters. Most of the parameters are unique to each
record, however there is one parameter - hobbies. The Hobbies table is
associated with the Students table with a one-to-many relationship.

The continuous form should show each student only once. Right now each
student shows up once for each hobbie they've been assigned in the database.

My question is how to limit the query to show only one record for each
student while still returning the values that will allow me to filter the
list for Hobbies.

Just an analogy for simplicity's sake. Here's the SQL. Last item in the
FROM clause is the "Hobbies" value, WHERE clause includes all the variables
for the form parameters:

SELECT tblSOPs.SOPID, tblSOPs.SOPCode, tblSOPs.SOPTitle, tblSOPs.SOPVersion,
tblSOPs.SOPAuthorID, tblSOPs.SOPStartDate, tblSOPs.SOPEndDate,
tblSOPs.SOPCategoryID, tblCategories.CategoryCode, tblSOPs.SOPSubCategoryID,
tblSubCategories.CategoryCode, tblSOPTypes.SOPTypeCode,
tblSubCategories.CategoryDescription, tblSOPs.SOPStatus,
tblSOPTypes.SOPTypeID, tblCategories.CategoryID, tblSubCategories.CategoryID
FROM (tblSOPTypes RIGHT JOIN (tblCategories AS tblSubCategories RIGHT JOIN
(tblCategories RIGHT JOIN tblSOPs ON tblCategories.CategoryID =
tblSOPs.SOPCategoryID) ON tblSubCategories.CategoryID =
tblSOPs.SOPSubCategoryID) ON tblSOPTypes.SOPTypeID = tblSOPs.SOPTypeID) LEFT
JOIN tblSOPGXP ON tblSOPs.SOPID = tblSOPGXP.SOPID
WHERE (((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType])) OR
(((tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPGXP.GXPTypeID)=[Forms]![fmnuSOPList]![cboGXPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSubCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPSub]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblCategories.CategoryID)=[Forms]![fmnuSOPList]![cboSOPCat]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND
((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND ((tblSOPTypes.SOPTypeID)=[Forms]![fmnuSOPList]![cboSOPType]) AND
(([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR
(((tblSOPs.SOPStatus)=[Forms]![fmnuSOPList]![cboSOPStatus] And
(tblSOPs.SOPStatus)5) AND (([Forms]![fmnuSOPList]![cboSOPType]) Is Null)
AND (([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null)) OR (((tblSOPs.SOPStatus)5)
AND (([Forms]![fmnuSOPList]![cboSOPStatus]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPType]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPCat]) Is Null) AND
(([Forms]![fmnuSOPList]![cboSOPSub]) Is Null) AND
(([Forms]![fmnuSOPList]![cboGXPType]) Is Null))
ORDER BY tblSOPs.SOPCode;


"Amy Blankenship" wrote:


"Scott A" wrote in message
...
Good questions - I'm not actually showing any of the data from the many
side
of the relationship on the form itself. I'm using the value on the many
side
as a parameter. So because I'm not showing any data from the many side, I
don't really care which of the records returned by the query is shown, I
basically want the query to ignore or skip records where there are
multiple
records on the many side.


Could you give a bit more detail here?



  #8  
Old May 19th, 2007, 06:51 PM posted to microsoft.public.access.queries
Amy Blankenship
external usenet poster
 
Posts: 539
Default One-to-Many link shows duplicate records in query.


"Scott A" wrote in message
...
The continuous form shows a list of students. I'm using unbound combo
boxes
on the form to select parameters. Most of the parameters are unique to
each
record, however there is one parameter - hobbies. The Hobbies table is
associated with the Students table with a one-to-many relationship.

The continuous form should show each student only once. Right now each
student shows up once for each hobbie they've been assigned in the
database.

My question is how to limit the query to show only one record for each
student while still returning the values that will allow me to filter the
list for Hobbies.

Just an analogy for simplicity's sake. Here's the SQL. Last item in the
FROM clause is the "Hobbies" value, WHERE clause includes all the
variables
for the form parameters:


I'd build the SQL dynamically in a function to something like (I'm not even
going to try to parse through that mammoth SQL to unravel it, so I'll go
with your analogy

Select Students.FirstName, Students.LastName, Students.Etc FROM Students
WHERE Students.StudentID IN (SELECT StudentHobbies.StudentID FROM
StudentHobbies WHERE StudentHobbies.HobbyID = YourForm!YourControl.Value);

HTH;

Amy


 




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 01:13 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.