在Excel中选择单元格时,可以一次选择多个矩形单元格范围。我正在尝试使用VBA来确定构成当前选择的所有不同矩形范围。有没有(最好是简单的)方法呢?
答案 0 :(得分:3)
您需要Areas property。
dim a as long
with selection
debug.print .areas.count
for a = 1 to .areas.count
debug.print .areas(a).address(0, 0)
next a
end with