I read strings from a column in a workbook and used them to populate combo boxes in a userform, but I can't find a way to return the user-inputted value.
When I try to assign the value to a variable, I get a '424' error, and if I try to use the variable in a function, Excel crashes.
This gives a 424 error:
Private Sub findColumns_button_Click()
Dim index As Integer, hyperlink_A As String, des As String
des = ResultCombo_A.Value
End Sub
And something like this crashes it:
Private Sub findColumns_button_Click()
Dim index As Integer, hyperlink_A As String, des As String
index = findIndex(ResultCombo_A.Value)
End Sub