grierfield
Technical User
Here is my problem
I have several command buttons programmed to select different criteria as per the below examples.
The spreadsheet is stored on a file server – the click_events works fine from my PC, but when I go to someones else PC the commands don’t work – I get the error message “Macro security setting is too high” even though I have no “macros” per say. The click events were all done in the visual basic editor – what is a fellow to do? HELP!
A click event example
Private Sub CommandButton2_Click()
With ActiveSheet
If Not .AutoFilterMode Then .[H2].AutoFilter
Range("H2").Select
Selection.AutoFilter
Selection.AutoFilter Field:=8, Criteria1:="MDR Kleb"
I have several command buttons programmed to select different criteria as per the below examples.
The spreadsheet is stored on a file server – the click_events works fine from my PC, but when I go to someones else PC the commands don’t work – I get the error message “Macro security setting is too high” even though I have no “macros” per say. The click events were all done in the visual basic editor – what is a fellow to do? HELP!
A click event example
Private Sub CommandButton2_Click()
With ActiveSheet
If Not .AutoFilterMode Then .[H2].AutoFilter
Range("H2").Select
Selection.AutoFilter
Selection.AutoFilter Field:=8, Criteria1:="MDR Kleb"