Hello.
I have a spreadsheet which contains, among other things, a list of the marks my students have got throughout their work. I want to highlight all the cells below certain values, but these values are different in some columns.
Currently I do it with a couple of simple conditional formatting formulas like
AND(MOD(ROW();2)=1;A1<5)
and
AND(MOD(ROW();2)=0;A1<5)
Which highlight the value and alternate background color in each row for readability on a per column basis.
This works fine, but given Calc’s tendency to fragment the ranges in Conditional formatting when copying, pasting, creating or deleting cells (and even when undoing the changes), it would make my life much easier if I can do the cell highlighting job with a single formula which highlights cells below different values in each column.
I haven’t been lucky searching for it on the internet, so I’m asking here.: Is such a thing possible or is the 2 formulas per column approach the only way to do it?
TIA