📜  excel vba 组合范围 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:54.097000             🧑  作者: Mango

代码示例1
With Sheet1
Set rng1 = .Range("A1:A3")
Set rng2 = .Range("C1:C3")

'This combines the two separate ranges, so select A1, A2, A3, C1, C2, C3
set newRng = Union(rng1, rng2)

'This combines the two ranges in the same way as when using "A1:C3", 
'so including the cells from column B
set newRng = .Range(rng1, rng2)