Hi.
I have found, that when i change transition evaluation flag, contditional formatting for my workbook checks incorrectly:
@Test
public void testTransitionCalc() throws Exception {
Workbook wb = new Workbook(“D://in.xlsx”);
wb.getWorksheets().get(0).setTransitionEvaluation(true);
wb.save(“D://out.xlsx”);
}
For example:
Cell G44 contains a two conditional formatting formulas:
=$B9=“t1:org_00:org_01:upsng_00:shop_64:nsp_07_02:rvs_07_02_19”
=$B29="t1:org_00:org_01:upsng_00:shop_64:nsp_07_02:rvs_07_02_19"
Value of B9 = t1:org_00:org_01:upsng_01:shop_63:nsp_11:rvs_11_14
Value of B29 = t1:org_00:org_01:upsng_01:shop_63:nsp_11:rvs_11_15
So neither conditions are TRUE,
But out.xlsx show this cell as conditional formatting is TRUE (cyan background fill)
Best regards. Alexey