So I have this document with some conditional formatting.
The condition setting the italic text is working in 7.6.5.2, but (using the same document) the italic text is not shown in 24.2.1.2.
This is a capture of the document opened in both Calc 7.6.5.2 and 24.2.1.2 under Windows 10:
Every other row shows a grayish background through the formula
MOD(ROW();2)=1
Which applies the gray background style.
Then there is another formula which italitices the text in the row if the text “CP”, “EB” or “NP” is present in the column C applying a new style which adds italics text to the one applied by the formula above:
AND(MOD(ROW();2)=1;OR($C4="NP";$C4="EB";$C4="CP"))
Same thing happens with styles that make the row white applying the white background counterparts of the above styles with
MOD(ROW();2)=0
and
AND(MOD(ROW();2)=0;OR($C4="NP";$C4="EB";$C4="CP"))
Is this a bug?