If you are talking about in the Detail Section of your report, use the On Format event of the Detail Section.<br><br>Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)<br>If <b>Place your condition here</b> Then<br>Me![<b>YourControlName</b>].FontWeight = 700 <b>'700 = Font Bold</b> <br>Else<br>Me![<b>YourControlName</b>].FontWeight = 400 <b>'400 = Font Regular</b> <br>End If<br>End Sub<br><br>You'll need to supply the condition above and change the name <u><b>YourControlName</b></u> to the actual name of your control.<br><br>HTH<br>RDH <p>Ricky Hicks<br><a href=mailto: rdhicks@mindspring.com> rdhicks@mindspring.com</a><br><a href= > </a><br>
If you are using Access 2000, there is conditional formatting on the menu bar. Select the field you want to apply the condition on, then select format on the menu bar and then "Conditional Formatting". This is quite powerful and works on continuous forms. <br><br>Jerry
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.