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)
Highlighting rows alternately.
RahulD
Hi All,
I have simple list report in that i am having Highlight condition for alternately highlighting row in the report as
Total.runningCount() % 2 Equal to 0
Also i am hiding some row/record through Visibility Expression as
if(row["QUANTITYINSTOCK"] < 100 )
{
true;
}
else
{
false;
}
but i am not getting highlight alternately in the report.
Can anybody guide me ?
Thanks
RahulD
Find more posts tagged with
Comments
bhanley
The issue is that you are hiding rows, but those rows still exist. This throws off your alternate-row highlighting. Do you actually need these rows in your table or can they be removed completely? If so, try moving the row show/hide logic to a filter on the data set or a scripting event. Doing this would allow you to actually never add the rows that are now hidden to the table thus keeping your highlight rule valid.
RahulD
Thanks Brian
It works fine.
Regards,
RahulD