R
RICHARD BROMBERG
I have a table called PHONE with fields ID,CATEGORY, and NAME as well as
some other fields.
I have a combobox named CmboSelectCategory
With this row source SELECT [phone].[ID], [phone].[CATEGORY]
FROM phone;
I have a second combobox named CmboSelectName
With this row source SELECT [phone].[CATEGORY],
[phone].[NAME] FROM phone WHERE ((([phone].[CATEGORY])="abc"));
In the second combobox I want to replace the term "abc" with the selection
made by the first combobox.
I used the term "abc" to test the second combobox and it does select all
records where the category is abc.
some other fields.
I have a combobox named CmboSelectCategory
With this row source SELECT [phone].[ID], [phone].[CATEGORY]
FROM phone;
I have a second combobox named CmboSelectName
With this row source SELECT [phone].[CATEGORY],
[phone].[NAME] FROM phone WHERE ((([phone].[CATEGORY])="abc"));
In the second combobox I want to replace the term "abc" with the selection
made by the first combobox.
I used the term "abc" to test the second combobox and it does select all
records where the category is abc.