Dear Developer and Community!
I have to database fields sugAL and udsAL
And I want sugAL have red color if the other field, udsAL = 0
Could you be so kind to assist me?
Thanks you!
$f = array();
$f["column"] = "sugAL";
$f["op"] = "=";
$f["value"] = "({udsAL}==0)"; // you can use placeholder of column name as value
$f["cellcss"] = "'font-weight':'bold', 'color':'red', 'background-color':'green'";
$f_conditions[] = $f;
2 Answers
For this, some advance conditional formatting would be required.
Working demo: http://pastebin.com/J9BEEyTV (line 100)
Your Answer