How do I prevent a cell from printing in Access?

G

Guest

Using MS Access 2003 Professional.
I have a membership table with names, addresses, phone #, etc. A member can
say, you can release all the information I have given you except the e-mail
address to our club web site. I now want to send this member's record with no
e-mail address. Any suggestions?
 
F

fredg

Using MS Access 2003 Professional.
I have a membership table with names, addresses, phone #, etc. A member can
say, you can release all the information I have given you except the e-mail
address to our club web site. I now want to send this member's record with no
e-mail address. Any suggestions?

How are you indicating to Access that a particular member doesn't want
his email given out?
Add a Field to your table (a Yes/No check box is fine).
Add it to your member entry form.
Check the box for each member that wants to restrict his email
address.

Include this check box in the report's record source.
Then using an unbound control:
=IIf([RestrictCheckBox]=True,"",[EmailAddress])
 

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

Top