Question { 4910 }
every alternative row should be hilighted ? how u can ?
Answer
Alternate row highlighting can be done by creating:
1. create a variable alternate_rowcolor with formula "=Mod((LineNumber()-1),2) (this will give the result 0 & 1 for number of rows in the table.)
2. Create an alert by making use of the above object and display red when value = 1 and yellow when value = 0.
Thats it!!