Printing Field Values as Null

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

Guest

I would like to have field print every value except one. If that value is in
the field I would like for the field to be blank. Is there any way to do
that.
 
I would like to have field print every value except one. If that value is in
the field I would like for the field to be blank. Is there any way to do
that.

Use an unbound control.
Set it's control source to:
=IIf([FieldName] = "SomeCriteria","",[FieldName])
 
Back
Top