S
Sam Kuo
Hi,
I have a table tblCategory with 2 fields: CategoryID and Category
and another table tblType with 3 fields: CategoryID, Category and Type
and a form frmType based on tblType
Category is auto number, and both Category and Type are text.
I've managed to have the CategoryID field in tblType display Category values
instead of CategoryID values by setting its RowSource property to SELECT
DISTINCTROW [CategoryID], [Category] FROM tblCategory ORDER BY [Category];
But the CategoryID textbox in frmType still displays CategoryID values, not
the Category values as it does in tblType! Can I make the CategoryID textbox
lookup the corresponding Category values?
Many thanks for any help
I have a table tblCategory with 2 fields: CategoryID and Category
and another table tblType with 3 fields: CategoryID, Category and Type
and a form frmType based on tblType
Category is auto number, and both Category and Type are text.
I've managed to have the CategoryID field in tblType display Category values
instead of CategoryID values by setting its RowSource property to SELECT
DISTINCTROW [CategoryID], [Category] FROM tblCategory ORDER BY [Category];
But the CategoryID textbox in frmType still displays CategoryID values, not
the Category values as it does in tblType! Can I make the CategoryID textbox
lookup the corresponding Category values?
Many thanks for any help