Setting selection to Nothing when programming Excel

后端 未结 17 1863
误落风尘
误落风尘 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: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

提交回复
热议问题