View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
Kesbutler Kesbutler is offline
external usenet poster
 
Posts: 30
Default Fill cell based on cell value

this sort of worked but it compared all the rows in column B with the first
row in column A instead of incrementing. I need the following. If any cellin
column B is less than the corresponding cellin column A then fill cell.
row A B
1 1 2 not shaded
2 2 1 shaded
3 5 4 shaded
4 4 5 not shaded

Thanks much!



"Atishoo" wrote:

You could always put the macro in under an open event or change event

"Kesbutler" wrote:

I was wondering if there was a way to have column B automatically update as
data is updated? One week it might be less than and the next it might not.

"Kesbutler" wrote:

Thanks. Is there a way to have it automatically shade without having to
manually run the macro?

"Joel" wrote:

use paste special with format xlPasteFormats

Range("B1").Copy
Range("B1:B100").PasteSpecial(xlPasteFormats)



"Kesbutler" wrote:

I have a number in column A and a number in column B. If column B is less
than column A, I want to fill the cell with a color. I tried conditional
formatting but it won't let me apply the formatting to all the cells in
column B at one time, I have to do each cell individually. Is there a way
(macro, formula?) that I can apply this rule to the entire column?

Thanks!