Bold Records In a Report, Based On Certain Fields

  • Thread starter zrag via AccessMonster.com
  • Start date
Z

zrag via AccessMonster.com

Hi,

Wondering if its possible to show certain records that show up in a report
as bolded text. It'd be nice to be able to bold records if a corresponding
check box is checked. And for those that dont have the check, to show those
as plain text. Is this possible?

Thanks.
 
A

Al Camp

Use the Format event of the section your fields are in, and use... (use your
own names)
If Active = True Then
Me.FullName.FontBold = True
Else
Me.FullName.FontBold = False
End If
hth
Al Camp
 
Top