P
peter.thompson
I have set up a sheet that has 10 command buttons which change colo
when worksheet cells contain something other than a ""
Here is the cosr I'm using too effect this
With ThisWorkbook.Sheets("Costs").CommandButton1
If Range("a100").Value <> "" Then
.BackColor = &HFFFF00
Else
.BackColor = &HE0E0E0
End If
End With
With ThisWorkbook.Sheets("Costs").CommandButton2
If Range("a101").Value <> "" Then
.BackColor = &HFFFF00
Else
.BackColor = &HE0E0E0
End If
End With
etc etc
Is there a more efficient way to do this?
Cheers
Peter (new to VBA
when worksheet cells contain something other than a ""
Here is the cosr I'm using too effect this
With ThisWorkbook.Sheets("Costs").CommandButton1
If Range("a100").Value <> "" Then
.BackColor = &HFFFF00
Else
.BackColor = &HE0E0E0
End If
End With
With ThisWorkbook.Sheets("Costs").CommandButton2
If Range("a101").Value <> "" Then
.BackColor = &HFFFF00
Else
.BackColor = &HE0E0E0
End If
End With
etc etc
Is there a more efficient way to do this?
Cheers
Peter (new to VBA