Is it possible to run a macro when you click on a certain cell A1 for example instead of the keyboards shortcut
Sub Macro1()
'
' Macro1 Macro
'
' Keyboard Shortcut: Ctrl+Y
'
Range("B10:D19,M10:O19").Select
Range("M10").Activate
Selection.ClearContents
End Sub