Hello bbagai,<br><br>I hope the following answers some of your question:<br><br>Conditional Formatting<br>Section Expert<br>Shading every other (Even) record<br>If Remainder(RecordNumber,2)=0 then Grey else NoColor<br>//This will shade every other line Grey starting with line 2,4,6,etc.<br>//The Remainder function takes the RecordNumber, divides it by 2, and returns a remainder<br>//If the remainder is equal to zero, the RecordNumber is divisible by two and thus is an even //number triggering the colour Grey<br>//If the remainder is not equal to zero, the RecordNumber is not evenly divisible by two and thus //is an odd number, triggering NoColor<br>//Apply this to the Details Section<br><br>Shading every other (Odd) record<br>If Remainder(RecordNumber,2)<>0 then Grey else NoColor<br>//This will shade every other line Grey starting with line 1,3,5,etc.<br>//If the remainder is not equal to zero, the RecordNumber is not evenly divisible by two and thus //is an odd number, triggering Grey<br>//The Remainder function takes the RecordNumber, divides it by 2, and returns a remainder<br>//If the remainder is equal to zero, the RecordNumber is divisible by two and thus is an even //number triggering NoColor<br><br>Good Luck,<br>Michael