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>