Highlight all non-blank entries in a column, except for the column header, that do no fall in some range. Here's my attempt:
=AND(OR(VALUE(INDIRECT("H"&ROW()))<0,VALUE(INDIRECT("H"&ROW()))>100),ROW()>1)
Evaluates as expected if pasted in a cell. Used in conditional formatting does not. Anybody knows why?