Hi,
how can I get a selected value from a dropdown placed in a customize ribbon to a cell?
Basically I would like to use the following macro associated/on action to a dropdown placed in the ribbon, but I am not able to write the value in cell H6:
Private Sub ComboBox1_Change()
Dim lo As ListObject
Set lo = Sheet13.ListObjects(1)
lo.AutoFilter.ShowAllData
Application.ScreenUpdating = False
ActiveSheet.ListObjects("Tbl_InOut").Range.AutoFilter Field:=2, Criteria1:=[H6] & "*", Operator:=xlFilterValues
Application.ScreenUpdating = True
End Sub
Any help is appreciated. Thanks in advance and Regards
John
how can I get a selected value from a dropdown placed in a customize ribbon to a cell?
Basically I would like to use the following macro associated/on action to a dropdown placed in the ribbon, but I am not able to write the value in cell H6:
Private Sub ComboBox1_Change()
Dim lo As ListObject
Set lo = Sheet13.ListObjects(1)
lo.AutoFilter.ShowAllData
Application.ScreenUpdating = False
ActiveSheet.ListObjects("Tbl_InOut").Range.AutoFilter Field:=2, Criteria1:=[H6] & "*", Operator:=xlFilterValues
Application.ScreenUpdating = True
End Sub
Any help is appreciated. Thanks in advance and Regards
John