Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Not Empty String Highlights
rab
Hello,
How to highlights cell with one condition :
If cell contain string then change background color to yellow
thanks.
Find more posts tagged with
Comments
rab
Solved!
I had to add this script to my cell.
op = this.getRowData().getColumnValue("othersProblem");
if (op != "") {
this.getStyle().backgroundColor = "yellow";
}
thanks.