conditional formating

A

Access help

i would like to see different color for a field with odd number and even
number in report. How do I do it?
 
D

Duane Hookom

You can add a text box to the detail section:
Name: txtCount
Control Source: =1
Running Sum: Over All
Visible: No
Then use conditional with an Expression like:
[txtCount] Mod 2 = 1
 
Top