Check Box & E-Mailing a Report. HHHEEELLLLP!!!

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

Guest

In Access help, it says that e-mailing a report it will not give any info. that is a Check Box or Option Buttons ( it sends the text box but not the check mark). So, what can I do and how if I must have that info

Thank you,
 
Don't use a check box. Use a textbox with contents like...

=IIf([CheckBoxField),"Yes","No")


Rick Bear


In Access help, it says that e-mailing a report it will not give any info.
that is a Check Box or Option Buttons ( it sends the text box but not the
check mark). So, what can I do and how if I must have that info.

Thank you,
 
make that...

=IIf([CheckBoxField],"Yes","No")





Don't use a check box. Use a textbox with contents like...

=IIf([CheckBoxField),"Yes","No")


Rick Bear


In Access help, it says that e-mailing a report it will not give any info.
that is a Check Box or Option Buttons ( it sends the text box but not the
check mark). So, what can I do and how if I must have that info.

Thank you,
 
I tried but it not working. Would you please give me more detail on how to do it

Thanks,
 
Just create a text box and put an 'if' statement in it similar to the one I
gave you in the previous example. Replace [CheckBoxField] with the name of
your field that you wish to evaluate. For more info, look at the Access
help file on how to build an IIF statement.

The basic format is...

IIf(condition,true case,false case)


Rick
I tried but it not working. Would you please give me more detail on how to
do it?

Thanks,
 

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

Similar Threads

CHECK BOX 1
Report based on check box and list box... 4
Spaces Between Check Boxes 2
Sum Check Box 5
Line drawing on report 0
check box 3
Check List Report 4
Send Report via e-mail group 1

Back
Top