help with Macros in Excel

Deftones

New member
I have this linked to a wordart image so i can keep count of something so it just adds 1 as i click on it. I was wondering if there is a way to disable it for a short period of time like 5-10 seconds after clicking it so that i cant accidentally double click the image and it'll count twice.

Sub Win()
'
' Win Macro
'
' Keyboard Shortcut: Ctrl+w
'
Range("B2") = Range("B2") + 1
End Sub
 
Back
Top