Colour part of Column usine Excel VBA (2003)
Solved/Closed
Related:
- Colour part of Column usine Excel VBA (2003)
- Excel online vba - Guide
- Rj45 colour code - Guide
- Vba excel mac - Guide
- Vba case like - Guide
- Excel mod apk for pc - Download - Spreadsheets
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Contributor
Last seen
December 27, 2022
555
Dec 22, 2011 at 10:21 AM
Dec 22, 2011 at 10:21 AM
Hi TC,
Here you go:
Best regards,
Trowa
Here you go:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A3:L3")) Is Nothing Or _
Selection.Cells.Count > 1 Then Exit Sub
Select Case Target
Case "Manager"
Range(Cells(1, Target.Column), Cells(30, Target.Column)).Interior.ColorIndex = 36
End Select
End Sub
Best regards,
Trowa
Oct 16, 2012 at 10:47 AM
I can't thank you enough Trowa - you are a beautiful, beautiful person ^_^