Cells(4, 6).Offset(0, 1).Interior.Color = Cells(4, 6).Interior.Color
上面VBA执行后则将(4,6)单元格的颜色向右偏移一格填充(4,6)颜色
将(0,1)换成(0,-1)则是向左偏移填充颜色
执行下面的宏代码
Sub a()
For i = 2 To 100 '假设有99行要涂色的数据
If Cells(i, 3) <> "" Then
Cells(i, 3).Offset(0, 1).Interior.Color = Cells(i, 3).Interior.Color '向右的一个单元格填充颜色
Cells(i, 3).Offset(0, 2).Interior.Color = Cells(i, 3).Interior.Color '向右的第二个单元格填充颜色
Cells(i, 3).Offset(0, -1).Interior.Color = Cells(i, 3).Interior.Color '向左的一个单元格填充颜色
Cells(i, 3).Offset(0, -2).Interior.Color = Cells(i, 3).Interior.Color '向左的第二个单元格填充颜色
End If
Next
End Sub
我写了一个,请试用下。
请在执行宏之前,选中那个基准单元格(就是以这个单元格为基准,把它的颜色向左向右扩展的)。当左边不足5个单元格时,就到第1个为止。
Sub FillBackground()
Dim background, myCell As Range, theRow As Long
Dim startCell As Integer, endCell As Integer
Set myCell = ActiveCell
theRow = myCell.Row()
background = myCell.Interior.Color
startCell = myCell.Column() - 5
If startCell < 1 Then startCell = 1
endCell = myCell.Column() + 5
Range(Cells(theRow, startCell), Cells(theRow, endCell)).Interior.Color = background
myCell.Offset(1, 0).Range("A1").Select '选中下一行同列单元格
End Sub
GoodLuck!