P
Phil Smith
I don.t get it. I have a query which returns data no problem.
SELECT MasterList_Step3.Brand, MasterList_Step3.[Item Type]
FROM MasterList_Step3
WHERE (((MasterList_Step3.[Item Type])<>"Irregular" And
(MasterList_Step3.[Item Type])<>"Catalog"));
If I join a table to it, it fails with the above error.
SELECT MasterList_Step3.Brand, MasterList_Step3.[Item Type],
Brand_DivisionSelector.Division
FROM Brand_DivisionSelector RIGHT JOIN MasterList_Step3 ON
(Brand_DivisionSelector.Brand = MasterList_Step3.Brand) AND
(Brand_DivisionSelector.Division = MasterList_Step3.Division)
WHERE (((MasterList_Step3.[Item Type])<>"Irregular" And
(MasterList_Step3.[Item Type])<>"Catalog"));
If I join a table to it, it fails with the above error.
The table I am joining has a single record. There is matching data in a
one to many relationship between the two fields in branddivisionselector
and masterlist)step3. However, this is a right join, which shoudl ot
prevent data from being displayed.
This is not making any sense to me. I am sure the error is bogus, but
have no clue where to go from here.
Any Ideas?
SELECT MasterList_Step3.Brand, MasterList_Step3.[Item Type]
FROM MasterList_Step3
WHERE (((MasterList_Step3.[Item Type])<>"Irregular" And
(MasterList_Step3.[Item Type])<>"Catalog"));
If I join a table to it, it fails with the above error.
SELECT MasterList_Step3.Brand, MasterList_Step3.[Item Type],
Brand_DivisionSelector.Division
FROM Brand_DivisionSelector RIGHT JOIN MasterList_Step3 ON
(Brand_DivisionSelector.Brand = MasterList_Step3.Brand) AND
(Brand_DivisionSelector.Division = MasterList_Step3.Division)
WHERE (((MasterList_Step3.[Item Type])<>"Irregular" And
(MasterList_Step3.[Item Type])<>"Catalog"));
If I join a table to it, it fails with the above error.
The table I am joining has a single record. There is matching data in a
one to many relationship between the two fields in branddivisionselector
and masterlist)step3. However, this is a right join, which shoudl ot
prevent data from being displayed.
This is not making any sense to me. I am sure the error is bogus, but
have no clue where to go from here.
Any Ideas?