I created a list In A worksheet, ListBox3. I am able to populate the list with data from a specified range of cells however, when I click on a number in the list I keep getting an Object Required error...
Sub ListBox3_Change()
'
Dim strCaseID As String
strCaseID = ListBox3.Column(0, ListBox3.ListIndex)
End Sub
Do I need to declare ListBox3 as a list?
Thanks,
Rirus
Sub ListBox3_Change()
'
Dim strCaseID As String
strCaseID = ListBox3.Column(0, ListBox3.ListIndex)
End Sub
Do I need to declare ListBox3 as a list?
Thanks,
Rirus