Setting selection to Nothing when programming Excel

后端 未结 17 1766
误落风尘
误落风尘 2021-02-02 09:35

When I create a graph after using range.copy and range.paste it leaves the paste range selected, and then when I create a graph a few lines later, it uses the selection as the f

相关标签:
17条回答
  • 2021-02-02 10:01

    You can simply use this code at the end. (Do not use False)

    Application.CutCopyMode = True
    
    0 讨论(0)
  • 2021-02-02 10:03

    You could set the Application.ScreenUpdating = False and select a cell out of view and then set the .ScreenUpdating to true. This would at least not show any selected cells in the current view.

    0 讨论(0)
  • 2021-02-02 10:04
    Cells(1,1).Select
    

    It will take you to cell A1, thereby canceling your existing selection.

    0 讨论(0)
  • 2021-02-02 10:04

    In Excel 2007, a combination using select and CutCopyMode property, it is possible to reset all the selections. It worked for my use case.

    Application.CutCopyMode = xlCopy
    ActiveSheet.Range("A" & lngRow).Select
    

    Regards Madhur

    0 讨论(0)
  • 2021-02-02 10:06
    Application.CutCopyMode = False
    
    0 讨论(0)
  • 2021-02-02 10:06
    Sub MyFunc()
    
        Range("B6").Select
    
        Selection.Locked = True
    
    End Sub
    
    0 讨论(0)
提交回复
热议问题