Setting selection to Nothing when programming Excel
Application.CutCopyMode = False
Cells(1,1).Select
It will take you to cell A1, thereby canceling your existing selection.
Application.CutCopyMode = False
Cells(1,1).Select
It will take you to cell A1, thereby canceling your existing selection.