input info when pasted in cells
Hello,
All you'll need to do is disable events right before the .ClearContents line and then enable them again right after it. For example:
Application.EnableEvents = False
Range("A:A").ClearContents
Application.EnableEvents = True
|