Print Report Question

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

Guest

I have a report I need to print that is an application form. I have a type
field that has a possible 5 different entries "Y", "G", "E", "A", or "R".
It's a 1 character text field. What I'd like to be able to do is print an X
in the box beside the appropriate label based on the entry in the application
form. Any suggestions as to how to do this would be appreciated.

Thanks,
Randy M
 
Try this --
Add 5 textboxes using the fields as control source. Edit control source
like this --
=IIf([YourField] = "Y", "X", "")
Do the same for the other textboxes substituting G, E, A, & R.
Create a rectangle and place over the textboes. Set the Back Style to
Transparent.
 
Thanks Karl for the help. I'll try that.

Randy M

KARL DEWEY said:
Try this --
Add 5 textboxes using the fields as control source. Edit control source
like this --
=IIf([YourField] = "Y", "X", "")
Do the same for the other textboxes substituting G, E, A, & R.
Create a rectangle and place over the textboes. Set the Back Style to
Transparent.

WCDoan said:
I have a report I need to print that is an application form. I have a type
field that has a possible 5 different entries "Y", "G", "E", "A", or "R".
It's a 1 character text field. What I'd like to be able to do is print an X
in the box beside the appropriate label based on the entry in the application
form. Any suggestions as to how to do this would be appreciated.

Thanks,
Randy M
 

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