VBA指定Range的几种方法

7810阅读 0评论2022-05-04 zenith518
分类:大数据

VBA中,指定range的方法有很多种,这里列出种常用的,以备后查。

点击(此处)折叠或打开

  1. 'select cell A2 by its reference
  2. Range("A2").Select
  3. 'select it again as row 1, column 2
  4. Cells(1, 2).Select
  5. 'the third way
  6. [a2].Select
  7. 'forth way
  8. evaluate("a2").select

zenith
2022-05-04 闭关修炼中
上一篇:如何在PowerShell中执行带引号的指令
下一篇:python任意对象数组客户化字段排序