I am facing issue with accessing value of ComboBox. I have assigned macro to it, but I cannot find out, what name it has assigned. Because of "object properties" is missing in macOS Excel VBA, I have no idea how to resolve this. My Excel is in Slovak Language (therefore suggested method for macro was Rozbaliť1_Zmena), but when I am accessing it through "Rozbaliť1" , code has problem with diacritics in the name of object.
Sub ComboBox_Change()
Dim strSelectedItem As Variant
strSelectedItem = ActiveWorkbook.Worksheets(1).???.Value
MsgBox strSelectedItem
End Sub