Contitional formatting expressions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like a particular field to conditionally format in bold if a particular checkbox in the record is checked yes.
What expression would I use in the "Expression Is" box?

Thanks
Rick Kania
Kania and Kania, PA
 
Rick,

All of the following will do it for you:

[NameOfYesNoField]<>0
or
[NameOfYesNoField]=-1
or
[NameOfYesNoField]=True
or
[NameOfYesNoField]=Yes
 
Back
Top