Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]() Hi bigwheel I am not very good at VBA and do not understand the reply you gave below: Try something like this. You can pick your own colors by changing the ColorIndex or RGB values:- Sub colorcode() For nrow = 2 To 40000 If Cells(nrow, 2) = "G52-555222" Then Range(Cells(nrow, 1), Cells(nrow, 7)).Interior.ColorIndex = 8 ElseIf Cells(nrow, 2) = "W5H-222999" Then Range(Cells(nrow, 1), Cells(nrow, 7)).Interior.Color = RGB(255, 255, 192) ElseIf Cells(nrow, 2) = "M52-999222" Then Range(Cells(nrow, 1), Cells(nrow, 7)).Interior.Color = RGB(204, 255, 204) Else Range(Cells(nrow, 1), Cells(nrow, 7)).Interior.Color = RGB(255, 255, 255) End If Next Range("a1").Select End Sub What in the code makes it change at every change in column 1? How would this be adapted for changes in other columns? When it pastes in the colours it removes the gridlines can it be donne without removing the gridlines? What do "G52-555222", "W5H-222999", "M52-999222" mean/refer to? What is nrow? Sorry if I seen vague, but I find this a good way to learn Thanks in advance Paul -- Paul Sheppard ------------------------------------------------------------------------ Paul Sheppard's Profile: http://www.excelforum.com/member.php...o&userid=24783 View this thread: http://www.excelforum.com/showthread...hreadid=396683 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Newbie With A Question | Excel Worksheet Functions | |||
Anybody Help with previous question | Excel Discussion (Misc queries) | |||
Hints And Tips For New Posters In The Excel Newsgroups | Excel Worksheet Functions | |||
Question about combining data from multiple workbooks into one rep | Excel Discussion (Misc queries) | |||
An easy macro question and one I believe to be a little more diffi | Excel Worksheet Functions |