Hi.
The following code works great retrieving the interior color of a cell and setting that color as my backcolor of my CommButton:
With ThisWorkbook.Worksheets("Sheet1")
CommandButton10.BackColor = .Range(.Cells(i, 10), .Cells(i, 10)).Interior.Color
End With
My problem is, I am...