Top | Previous | Next |
Tutorial 1 - Row Versioning |
Now we want to color in the rows, and create different row versions for those employees that are entitled more than $5000.
Here were the steps for this report
buyout>5000?"badnews" How it works: This conditional statement will return the string "badnews" if buyout exceeds $5000 for a given employee, changing the row version to badnews for that person. We intentionally don't specify an ELSE condition. Since a valid string is not returned, the report will default to using Standard, Alternate, or whatever builtin row versions are defined. buyout>5000?"badnews":"Alternate" Would make employees show up as our Alternate dark gray or badnews red. Standard would never be displayed. Note: Versions are different for each row, and they each have their own defining Table Row Version Key
Done for now! Index Previous (Substitution Keys) On to Tutorial 2
|