I am trying to develop a conditional formatting rule that will handle all the data in the columns. The annoying thing with Excel is that it only wants an absolute reference to one cell. I do not want to set rules for every cell individually.
So what I need to do is compare two cells completely down the sheet. For example:
if Cell F3 < Cell G2 = true //Then do something with formatting in Cell F3
if Cell F4 < Cell G3 = true //Then do something with formatting in Cell F4
Also
if Cell F3 > Cell G2 = true //Do something different with formatting in Cell F3
This will continue down the entire sheet. All I am doing is trying to automatically change the text color of the cell in column F.
Is there away to create one rule that will control the whole sheet?