Hello
I try excluding specific sheet from combobox on userform but still continue showing
so when populate sheets names in combobox1 should ignore sheets "Home" totally
I hope some body guide me the right way
thanks
I try excluding specific sheet from combobox on userform but still continue showing
so when populate sheets names in combobox1 should ignore sheets "Home" totally
VBA Code:
dim ws as worksheet
If ComboBox1.Value = "" Then Exit Sub
If ws.Name <> "Home" Then
Set ws = Sheets(ComboBox1.Value)
End If
ws.Activate
thanks