Printing Field Values as Null

J

jbrickey

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.
 
F

fredg

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])
 
Top