snb
Verenigingslid
- Lid geworden
- 12 jun 2008
- Berichten
- 20.326
Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Application.ScreenUpdating = False
For Each cl In [E5:I47]
cl.interior.colorindex=xlnone
cl.interior.colorindex=choose(cl.value,40,45,3,4,34,6,7,8,44,46,2)
Next
Application.ScreenUpdating = True
End Sub