Color cells by specific condition
Hi, I'm new for JSL.I want the cell to change color based on specific condition.for example, I want :dIGSS>5 get red color. dt << Get Rows Where(:dIGSS>5);
:dIGSS << Color Cells(3);
But all dIGSS rows change to red. I've found an example which can change cell's color based on specific condition, but it is for each column:For Each({colname}, dt << Get Column Names("String"),
rows_to_color = dt <<
...