Abhishek1988
New Member
- Joined
- Oct 22, 2018
- Messages
- 27
Hello Everyone,
I have two option button :
London_Click() and Paris_Click()
One text Box :
TextBox1_Change()
One combo box:
DropDown_Change()
Under the Combo box I have below items:
"High London"
"Low London"
"High London 2"
"Low London 2"
"High Paris"
"Low Paris"
"High Paris 2"
"Low Paris 2"
my combo box is depended on the option button with below code. P2:P5 are related to london. P6:P9 are related to Paris
If UserForm1.London.Value = True Then
UserForm1.DropDown.RowSource = "P2:P5"
If UserForm1.Paris.Value = True Then
UserForm1.DropDown.RowSource = "P6:P9"
Now I need further filter on drop down based on textvalue.
If text value is High and London checkbox is checked then it should shows only high london and high london 2
If text value is low and London checkbox is checked then it should shows only low london and low london 2
If text value is High and Paris checkbox is checked then it should shows only high Paris and high Paris 2
If text value is low and Paris checkbox is checked then it should shows only low Paris and low paris 2
also help me where is should put coding..
thanks
I have two option button :
London_Click() and Paris_Click()
One text Box :
TextBox1_Change()
One combo box:
DropDown_Change()
Under the Combo box I have below items:
"High London"
"Low London"
"High London 2"
"Low London 2"
"High Paris"
"Low Paris"
"High Paris 2"
"Low Paris 2"
my combo box is depended on the option button with below code. P2:P5 are related to london. P6:P9 are related to Paris
If UserForm1.London.Value = True Then
UserForm1.DropDown.RowSource = "P2:P5"
If UserForm1.Paris.Value = True Then
UserForm1.DropDown.RowSource = "P6:P9"
Now I need further filter on drop down based on textvalue.
If text value is High and London checkbox is checked then it should shows only high london and high london 2
If text value is low and London checkbox is checked then it should shows only low london and low london 2
If text value is High and Paris checkbox is checked then it should shows only high Paris and high Paris 2
If text value is low and Paris checkbox is checked then it should shows only low Paris and low paris 2
also help me where is should put coding..
thanks