无法选择vba中范围内的子集

时间:2016-07-12 18:14:47

标签: excel vba range subset

当我使用Range关键字选择一组有效的单元格时 例如:Range(Cells(1, 2), Cells(3, 3)).Interior.ColorIndex = 3 - 工作正常

但是当使用变量做类似的事情时,它只突出显示最后一个元素 例如:

Set GraphCells = Range("D10:FO12")    
GraphCells(Cells(1, 2), Cells(3, 3)).Interior.ColorIndex = 3

仅突出显示cell(3,3)

任何人都知道为什么?

1 个答案:

答案 0 :(得分:2)

您需要使用Range方法。

Set GraphCells = Range("A10:E1100")
GraphCells.Range(Cells(1, 2), Cells(3, 3)).Interior.ColorIndex = 3