次のコードがあります。
Case "END-BOX"
EndBox = ActiveCell.Row
Selection.Offset(-1, 2).Select
Selection.ClearContents
Rows(2).Insert Shift:=xlDown
TotalCols = ActiveSheet.UsedRange.Columns.Count
Col = 4
Cells(EndBox, Col).Select
For i = EndBox To 1 Step -1
If Cells(i, Col).Value <> "" Then
n = n + 1
Else
Cells(i, Col).Value = n
Cells(i, Col).Interior.ColorIndex = 4
n = 0
End If
Next
Range(EndBox).Select
Selection.Offset(1, -2).Select
これにより、新しいボックス行だけでなく、エンド ボックス行にも緑色のセルが表示されます。new-box の行だけに色を付けたいです。これを行うようにコードを変更する方法はありますか?
これが私のワークブックです。