B
Bob H
I have a table with almost 3000 records of 11 different tool types.
I have created a table called tblToolID listing the 11 different types, and
in the tool table I have the toolID as a table/query lookup to tblToolID.
The tooltype is then selected from a combo box.
When I created a new query and put in "electrical" as tooltype as a
criteria, only 8 of the 400 electrical items are returned by the query.
When I put in anther type, say lifting, no records are returned from over
1800 records!
Here is a the SQL as an example:
SELECT tblTools.ToolType, tblTools.ManufacturerID, tblTools.ProductID,
tblTools.Size
FROM tblTools
WHERE (((tblTools.ToolType)="lifting"));
If I put in the criteria box under another feild say "name of product"
under Product ID, all the records are returned.
So why are no records returned from a criteria of tooltype, "Lifting"
Thanks
I have created a table called tblToolID listing the 11 different types, and
in the tool table I have the toolID as a table/query lookup to tblToolID.
The tooltype is then selected from a combo box.
When I created a new query and put in "electrical" as tooltype as a
criteria, only 8 of the 400 electrical items are returned by the query.
When I put in anther type, say lifting, no records are returned from over
1800 records!
Here is a the SQL as an example:
SELECT tblTools.ToolType, tblTools.ManufacturerID, tblTools.ProductID,
tblTools.Size
FROM tblTools
WHERE (((tblTools.ToolType)="lifting"));
If I put in the criteria box under another feild say "name of product"
under Product ID, all the records are returned.
So why are no records returned from a criteria of tooltype, "Lifting"
Thanks