Hi @Deme_trius,
Do you want to:
1). Click a button to make the representive combobox visible?
2). Filter items in ComboBox based on TextInput text?
Could you please tell me that if the ComboBoxB will be visible as well if ComboBoxA is visible?
Could it be possible that you want to make both of two ComboBoxes visible at the same time?
I think the issue in your scenario should be an either/or question, if so, please try the following steps:
1). Set the OnSelect property of buttonA:
Set(varA,true);Set(varB,false)
Set the ComboBoxA Visible property:
varA
Set the ComboBoxA Items property:
If(varA,Filter(list1,TextInput12.Text in Title))
2). Set the OnSelect property of buttonB
Set(varB,true);Set(varA,false)
Set the ComboBoxB Visible property:
varB
Set the ComboBoxB Items property:
If(varB,Filter(list2,TextInput12.Text in Name))​