Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Open the VBE, insert a new module, and paste in the code. Then select and run
it. Note that this is not dynamic like true "conditional formatting"; e.g. if the cell values change, the colors will not change until the macro is run again. HTH, Keith Sub UpdateColors() For i = 1 To 34 RowToFormat = i + 3 RowOfData = i + 42 'Sheet1.Range("A1").Interior.Color DataValue = Sheets("Sheet1").Range("I" & RowOfData).Value Select Case DataValue Case Is < 0.5 Sheets("Sheet1").Range("I" & RowToFormat).Interior.Color = vbRed Case Is <= 0.75 Sheets("Sheet1").Range("I" & RowToFormat).Interior.Color = vbYellow Case Is <= 0.9 Sheets("Sheet1").Range("I" & RowToFormat).Interior.Color = vbBlue Case Is <= 1 Sheets("Sheet1").Range("I" & RowToFormat).Interior.Color = vbGreen Case Else Sheets("Sheet1").Range("I" & RowToFormat).Interior.Color = xlAutomatic End Select Next End Sub "RedDevil" wrote: Hello I have to format cells (I4:J37) if cells (I43:J76) a 100%-91% (green) 90%-76% (blue) 75%-50% (yellow) <50% (red) How do I write that in VBA? (I am new to VBA so any help would be appreciated) Many thanks Tracey |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Formating | Excel Discussion (Misc queries) | |||
conditional formating | Excel Discussion (Misc queries) | |||
Conditional Formating | Excel Discussion (Misc queries) | |||
Install dates formating using conditional formating? | Excel Discussion (Misc queries) | |||
Conditional Formating | Excel Worksheet Functions |