D
DoctorV
We have a macro with the following code:
Range("A4:C4").Select
With Selection.Interior
.ColorIndex = 38
.Pattern = xlSolid
End With
What the user really wants is whatever cell their cursor is in, for th
macro to automatically change the BackColor of Columns A B and C in th
Active row the cursor is in to ColorIndex = 38
The code attempted above only affects a specific range, whereas th
code we need, needs to be able to work ANYWHERE on the worksheet
How do we do this
Range("A4:C4").Select
With Selection.Interior
.ColorIndex = 38
.Pattern = xlSolid
End With
What the user really wants is whatever cell their cursor is in, for th
macro to automatically change the BackColor of Columns A B and C in th
Active row the cursor is in to ColorIndex = 38
The code attempted above only affects a specific range, whereas th
code we need, needs to be able to work ANYWHERE on the worksheet
How do we do this