@Bonniedog2
You can achieve this by using the Filter function in Power Apps.
The idea is to apply a filter to the Items property of your 'Sub Themes' ComboBox based on the selected value of the 'Broad Themes' dropdown.
Here's how you can do this:
Assume you have the following:
1. 'Broad Themes' dropdown has the name Dropdown1
2. 'Sub Themes' combo box has the name ComboBox1
3. 'Sub Themes' data is stored in a data source called SubThemesDataSource, which has a column named 'BroadTheme' that matches the selected value from Dropdown1.
You can filter the 'Sub Themes' ComboBox using a formula like (in the Items property of ComboBox1😞
Filter(SubThemesDataSource, BroadTheme = Dropdown1.Selected.Value)
The formula is applying a filter to SubThemesDataSource, where the BroadTheme of each record is equal to the currently selected value of Dropdown1.
This should make sure that just the related sub-themes are displayed in the ComboBox based on the selected broad theme.
See if this helps @Bonniedog2