I have a ComboBox in a userform, and I'm looking for a method to use to find what the selection is so that I can utilize that as a string and pass it to a cell on the sheet. For instance:
Private Sub Filter_Click()
'The Userform is called Summary, and the ComboBox in question is named Month_Filter
If Summary.Month_Filter = "January" Then .......
Call UpdatedTotals
End Sub
Sub UpdatedTotals()
Dim ChosenDate as String
If Summary.Month_Filter <> "" Then ChosenDate = Summary.Month_Filter.Value
Range("A1").FormulaR1C1 = ChosenDate
End Sub
.Valueproperty that should work, unless it's a multi-column combobox.