Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
How do I shade every 3rd Line?

Summary
How do I shade every 3rd Line?
Content
Is there a way to do conditional formatting (or equivalent) that would shade every 3rd line in a table (that is part of a repeating section).
I'm using BIP-Embedded (via WORD)
Answers
-
You can use below condition just after for-each
<?if@row:position() mod 3=0?> <xsl:attribute name="background-color" xdofo:ctx="incontext">lightgray</xsl:attribute><?end if?> 0 -
Hi,
Add a form field for the first column in the table and you just add below code in to form field help text.
<?if@row:position:() mod 3=0?>
<xsl:attribute name="background-color" xdofo:ctx="in context">lightgray</xsl:attribute>
<?end if?>
Regards,
Pavan
0