Displaying an asterick in a text box of a report.

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

Guest

I have a table containg a list of tapes that were sent out. When these tapes
have been returned I would like an asteric to be displayed by each returning
tape in a texbox on a report.
tblTapes hold the field for the tapes. Only field on that table are:
reqid,tape number, and receive date.
 
Something like this in the Control Source of the text box should do it ...

=IIf(IsNull([receive date]), "*", "")

See IIf Function and IsNull Function in the help file for details.
 

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