Hello,
Hopefully this will all make sense.
I have a spreadsheet that I enter measurements into. I have all the parts in rows 17 - 117 and the measurements in columns W - AN. If the measurement is below 0.7 then I want that cell to turn red, which is no problem. But where I'm running into issues is the next step.
I want the header of each column to turn red when there is a measurement that fails in that column. For example, if the measurement in cell W20 is 0.4, then I want the header for column W to turn red. For some reason I can't get anything to work right.
Currently this is what I have in the conditional formatting as the formula for the header (cells W16 - AN16):
The reason I'm not just using a simple <0.7 is because excel then flags all the blank cells in that range also that haven't been filled in yet. So I'm trying to do ">0 and <0.7", that way it doesn't flag blanks. This is the latest formula I've ended up with so far through research and fiddling around with it. The problem with it is that it does absolutely nothing LOL, nothing changes in the header when I type a value into the table greater than 0 but less than 0.7.
Anything thoughts?
Hopefully this will all make sense.
I have a spreadsheet that I enter measurements into. I have all the parts in rows 17 - 117 and the measurements in columns W - AN. If the measurement is below 0.7 then I want that cell to turn red, which is no problem. But where I'm running into issues is the next step.
I want the header of each column to turn red when there is a measurement that fails in that column. For example, if the measurement in cell W20 is 0.4, then I want the header for column W to turn red. For some reason I can't get anything to work right.
Currently this is what I have in the conditional formatting as the formula for the header (cells W16 - AN16):
Excel Formula:
=AND(OR((W$17:W$117)>0),(OR((W$17:W$117)<0.7)))
The reason I'm not just using a simple <0.7 is because excel then flags all the blank cells in that range also that haven't been filled in yet. So I'm trying to do ">0 and <0.7", that way it doesn't flag blanks. This is the latest formula I've ended up with so far through research and fiddling around with it. The problem with it is that it does absolutely nothing LOL, nothing changes in the header when I type a value into the table greater than 0 but less than 0.7.
Anything thoughts?