Results 1 to 5 of 5
  1. #1
    pietvoerman is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    3

    Post Checkboxes in Email for Collecting Data

    Hi,

    I have to know from 500 users which in weeks they are available. So I want to send an email to everybody with a checkbox per week so they can simply check the boxes in the weeks they are available.

    I tried Yes/No function and the Checkbox function and in the database I see the checkboxes but in the Email the users still have to type the word Yes or No.
    Is it possible to have an email with checkboxes which are added to my database?

    I hope anyone can help.

    Thanks in advance,

    Piet Voerman

  2. #2
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    It sounds as though you are using a feature that is available in Access 2010 but not available (to Create new Emails) in any other version. Are you using the Access wizard to create an Email? What format are you using, HTML or InfoPath? You could probably use the resulting HTML Email and edit the HTML to include Radio Buttons.

  3. #3
    pietvoerman is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    3
    Quote Originally Posted by ItsMe View Post
    It sounds as though you are using a feature that is available in Access 2010 but not available (to Create new Emails) in any other version. Are you using the Access wizard to create an Email? What format are you using, HTML or InfoPath? You could probably use the resulting HTML Email and edit the HTML to include Radio Buttons.
    Thanks for your response. Yes I am using Access 2010. Under the tab External Data there is an option Create E-mail. I used HTML because I fear some users may not be able to open and fill in the form if I use the InfoPath format. Could you tell me how to include Radio Buttons to the HTML email?

  4. #4
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    You would have to locate the code within your Email that collects the user input for your Yes/No field. The textbox should look something like this.

    Code:
    <form>
     First name:< input type="text" name="firstname"><br>
     Last name:< input type="text" name="lastname">
    < /form>
    The "form" tags should be several lines away, depending on where the field is within your email.

    You would need to change the input type from "text" to the type you want. A "checkbox" may be easier than a "radio" because radio buttons use Groups. The above code uses "name". You should leave this the same so the form knows which field in the database to associate with the user input field. There may be an ID also, leave it the same.

    Here is an example
    http://www.w3schools.com/html/html_forms.asp

  5. #5
    pietvoerman is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    3
    Quote Originally Posted by ItsMe View Post
    You would have to locate the code within your Email that collects the user input for your Yes/No field. The textbox should look something like this.

    Code:
    <form>
     First name:< input type="text" name="firstname"><br>
     Last name:< input type="text" name="lastname">
    < /form>
    The "form" tags should be several lines away, depending on where the field is within your email.

    You would need to change the input type from "text" to the type you want. A "checkbox" may be easier than a "radio" because radio buttons use Groups. The above code uses "name". You should leave this the same so the form knows which field in the database to associate with the user input field. There may be an ID also, leave it the same.

    Here is an example
    http://www.w3schools.com/html/html_forms.asp
    Thanks very much. I will try make it a checkbox then.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 1
    Last Post: 09-12-2012, 12:42 PM
  2. Collecting EMail Attachments using Data Collection Replies
    By Blindswerve in forum Database Design
    Replies: 1
    Last Post: 05-16-2012, 04:56 PM
  3. Collecting All data
    By Andrias14 in forum Queries
    Replies: 2
    Last Post: 01-30-2012, 06:42 AM
  4. Collecting data via email with drop downs
    By tlyons in forum Access
    Replies: 2
    Last Post: 01-19-2011, 10:34 AM
  5. Collecting data off a form and adding to 2 tables
    By Phil Knapton in forum Access
    Replies: 1
    Last Post: 01-04-2011, 10:58 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums