I have the following code in Excel 2010:
Option Explicit
Dim active_row As Range
Private Sub CommandButton1_Click()
Set active_row = Sheets("active").Range("A2:L2")
active_row.Interior.Color = RGB(0, 255, 0)
End Sub
Private Sub CommandButton2_Click()
active_row.Interior.Color = RGB(255...