Need anyone help on how to highlight with color for a certain cell or value. example as follow:
from the table below let say, we want to find odd value in marks column and need to highlight the whole row which means row 1 and 4. How can we do it in KINME?
Hi,
I would first use a node to do the classification. I am not sure if you mean “odd” as “strange” or “odd vs even number”. If it is the former, you can use a node like the Numeric Outliers to find outliers and mark them in a separate column, if it is the latter, you can use a Math Formula node with the expression $Marks$ % 2 to take the modulo 2 of the Marks column (will yield 0 for even numbers and 1 for odd numbers). Then you can use the Color Manager to color the rows based on the value of your newly calculated column.
Hope this helps!
Alexander