Using excel 2010. I have a spreadsheet that is basically a living document. I am trying to find a way to use conditional formatting to highlight cells that do not fall within a set range, but not highlight cells that are blank. This is the direction I am currently going:
=IF((F45>$F$7)*AND(F45<$F$8),FALSE,TRUE)
This does return the correct "True" result for this cell (F45 is the only cell that is outside my range) when used in the spreadsheet, but highlights all cells in the column when I try and plug it into conditional format. Also there is nothing to remove highlight from blank cells.
=IF((F45>$F$7)*AND(F45<$F$8),FALSE,TRUE)
This does return the correct "True" result for this cell (F45 is the only cell that is outside my range) when used in the spreadsheet, but highlights all cells in the column when I try and plug it into conditional format. Also there is nothing to remove highlight from blank cells.