inform

N1234

Member
Local time
Today, 02:42
Joined
Jun 22, 2020
Messages
64
Hello!

Searchbox

Thank you,
Nikki
 
Last edited:
Hi Nikki. Welcome to AWF!

Can you provide some step by step guidance on how to duplicate the issue? Thanks!
 
Thank you!
 
Last edited:
Thank you!

I will try my best on explaining what I did:

1. I created the SubThemesNames table which I created a relationship with the ThemeNames table.
2. Then I added this criteria in the "Row Source" portion of cboSubTheme :
SELECT tbleSubThemesNames.Theme, tbleSubThemesNames.SubTheme
FROM tbleSubThemesNames
WHERE (((tbleSubThemesNames.Theme)=[Forms]![Form SearchBox]![cboThemeNames]))
ORDER BY tbleSubThemesNames.SubTheme;
3. I'm still able to access my data using the Theme Combobox but the Subtheme combobox in the form is blank. Subtheme is supposed to be derived from the theme list.
Okay, I think maybe you're just missing a Requery for the second combo, after you make a selection in the first combo.
 

Users who are viewing this thread

Back
Top Bottom