M
marcfromm
I created a database with 4 tables called Items, Date, Type, and Titles.
The items Table uses combo boxes to enter the date, type, and titles from the
Date, Type, and Titles tables, since the choices are set. I can
enter records with no problems.
I created a parameter query that asks for the date, which works great to
display the items from the inputed date.
I created a second parameter query that asks for the Type, which does not
work. It displays no records even if I enter a known type.
Date Query:
SELECT Items.itemName, Items.itemType, Items.itemEpisode, Items.itemDate,
Items.itemComment, Items.itemimage
FROM Items
WHERE (((Items.itemDate)=[Enter a date]));
Type Query:
SELECT Items.itemName, Items.itemType, Items.itemEpisode, Items.itemDate,
Items.itemComment, Items.itemImage
FROM Items
WHERE (((Items.itemType)=[Enter an item type]));
Why does the date query work and not the type query?
I have no relationships setup between the tables. All the record information
is in the Items table.
The items Table uses combo boxes to enter the date, type, and titles from the
Date, Type, and Titles tables, since the choices are set. I can
enter records with no problems.
I created a parameter query that asks for the date, which works great to
display the items from the inputed date.
I created a second parameter query that asks for the Type, which does not
work. It displays no records even if I enter a known type.
Date Query:
SELECT Items.itemName, Items.itemType, Items.itemEpisode, Items.itemDate,
Items.itemComment, Items.itemimage
FROM Items
WHERE (((Items.itemDate)=[Enter a date]));
Type Query:
SELECT Items.itemName, Items.itemType, Items.itemEpisode, Items.itemDate,
Items.itemComment, Items.itemImage
FROM Items
WHERE (((Items.itemType)=[Enter an item type]));
Why does the date query work and not the type query?
I have no relationships setup between the tables. All the record information
is in the Items table.