I am trying to conditional format a section of a row based on the value of the a cell. Specifically I am trying to grey out a section of a row (A#:AT#) when the QTY cell (B#) is 0.
I am been trying to create a formule that will test for this condition so that I could make a single conditional formatting rule that would cover many rows. The problem I am having is that my formula is constantly returning FALSE due to past of the formula having double quotes around it.
Here is the formula that I created:
=EXACT(CONCATENATE("B",ROW()),0)
When this formula is evaluated I get:
=EXACT(CONCATENATE("B",4),0)
=EXACT("B4",0)
=FALSE
The formula =EXACT(B4,0) returns a TRUE value, so I believe all I need to do is figure out how to remove the double quotes from around the "B4" part of the formula.
Any ideas or suggestions?
I am been trying to create a formule that will test for this condition so that I could make a single conditional formatting rule that would cover many rows. The problem I am having is that my formula is constantly returning FALSE due to past of the formula having double quotes around it.
Here is the formula that I created:
=EXACT(CONCATENATE("B",ROW()),0)
When this formula is evaluated I get:
=EXACT(CONCATENATE("B",4),0)
=EXACT("B4",0)
=FALSE
The formula =EXACT(B4,0) returns a TRUE value, so I believe all I need to do is figure out how to remove the double quotes from around the "B4" part of the formula.
Any ideas or suggestions?