Hey John,
this is what i got now and i still have the same errors.....it seems to work
on a query now, but when i get to create a report, it still doesnt accept
those new fields, foamCore, foamenc, boxtype, and boxprofile. somehow, it's
not displaying it.
SELECT LinkedSalesOrder.OrderNo, LinkedSalesOrder.ID,
LinkedSalesOrder.RequiredDate, LinkedSalesOrder.ID_1,
LinkedSalesOrder.Description, LinkedSalesOrder.Comment1,
LinkedSalesOrder.OrderQty, MSM.Produce, qrMSM.Bfill, qrMSM.Qfill,
qrMSM.Uphfill, qrMSM.Ptfill, LinkedSalesOrder.Comment2, MSM.SpringID,
MSM.LabelID, MSM.SizeID, MSM.NeedleID, MSM.PatternID, MSM.ConfigID,
MSM.BorderID, MSM.FoamCoreID, MSM.FoamEncID
FROM qrMSM INNER JOIN (LinkedSalesOrder INNER JOIN MSM ON
LinkedSalesOrder.ID_1 = MSM.ModelNumber) ON qrMSM.ModelNumber =
LinkedSalesOrder.ID_1
WHERE (((MSM.BoxChecked)=No))
WITH OWNERACCESS OPTION;

Signature
need help
> When I break down your query I note that you are missing spaces in
> several places in the FROM clause. Usually right before a parentheses.
[quoted text clipped - 57 lines]
> > Pattern.PatternID = MSM.PatternID) ON Size.SizeID = MSM.SizeID)ON
> > FoamCore.FoamCoreID = FoamCoreID)ON FoamEnc.FoamEncID = MSM.FoamEncID;
John Spencer - 29 Mar 2007 00:38 GMT
I don't see the fields in the Select clause of the query. You need to
have them there if you are going to use them in the report.
'====================================================
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================
> Hey John,
>
[quoted text clipped - 15 lines]
> WHERE (((MSM.BoxChecked)=No))
> WITH OWNERACCESS OPTION;
Will G - 29 Mar 2007 21:00 GMT
Hey John,
thanks for the help, it worked. i was wondering if you have an answer for
me for the following question. i am new in access development and i am trying
to create a query that uses the function count to count the amount of items
for a vendor, i am trying to create a Purchase Order per vendor. now, i have
a vendor table, a spring table, a foam table and so on and a production query
that you helped me with. i like to create query that shows, spring, foam, and
other items per vendor. i created a query for each item and thier vendor, but
when i try to create just one for vendor and all items, i get stuck and get
bad results. it's there a directory where i could learn about that or can you
help? thanks again.