I output a query in three columns. For styling purpose I need to target the second record of every row (second record of every row need to have margin left and right), I.E. records 2, 5, 8, 11, 14 etc. I was trying it using the mod operator but I am a little confused. This is how I have it now:
<div class="#iif(currentrow MOD 3,DE('colOdd'),DE('colEven'))#">
</div>
I’m still wondering though if there is a way to target that second record as described in my first post, so answers to that question are still welcome.
Maybe I didn’t make my self clear. I don’t want just to target the second row. I would like to target the second record in every row in my column output See below the bold numbers:
1 2 3
4 5 6
7 8 9