Anyone has idea to Split the value of Combobox.Text with smoother functioning
I tried the following
Private Sub UserForm_Initialize()
Combobox1.List = Worksheets("Sheet1").Range("A2").CurrentRegion.Offset(1).Value
End Sub
Private Sub Combobox1_Click()
Dim splitValue() As String
Dim...