inform (1 Viewer)

N1234

Member
Local time
Today, 00:55
Joined
Jun 22, 2020
Messages
64
Hello!

Searchbox

Thank you,
Nikki
 
Last edited:

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 21:55
Joined
Oct 29, 2018
Messages
21,455
Hi Nikki. Welcome to AWF!

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

N1234

Member
Local time
Today, 00:55
Joined
Jun 22, 2020
Messages
64
Thank you!
 
Last edited:

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 21:55
Joined
Oct 29, 2018
Messages
21,455
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

Top Bottom