View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
stumac stumac is offline
external usenet poster
 
Posts: 41
Default How do I change the color of cells with a macro

Oops forgot to change the values to reflect your example - I am sure you will
get the idea though.

"stumac" wrote:

Hi Mike, you could try something like:

cv = Range("a1").Value
IC = Switch(cv 10, vbRed, cv 8, vbBlue, cv 6, vbYellow, cv 0, vbGreen)
Rows(1).Interior.Color = IC


Hth
Stu

"Mike DFR" wrote:

I was using conditional formatting, but this only gives three options, I need 5
I am looking for a simple piece of code which says

If cell A1 is not zero color the row green, for example.

I have tried With range, If Else and Case

I get the first color, then it will not change