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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top