Results 1 to 12 of 12
  1. #1
    alanfallow is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2014
    Location
    NE Scotland
    Posts
    31

    How to list all names etc to Print

    Hi wonder if someone can help.
    I am in the process of doing an attendance register with name date and attendance y/n
    I would like to print out a form or report with all names in a list with blank date attendance etc so i can manualy fill it in on the night then transfer into access. It will probably be easy but just not sure how.



    Thanks again for any help.

  2. #2
    rpeare is offline VIP
    Windows XP Access 2003
    Join Date
    Jul 2011
    Posts
    5,442
    Just create a query showing the person's information then create two additional fields:

    Attendance Date: date()
    Present: null

    so for each row of your query the attendance date will be visible (so if you compare attendance sheets you'll know which date you're looking at) and the PRESENT field will be blank basically giving you a 'box' in your printed query that you can check or write in the value.

  3. #3
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,625
    You want a blank document with names listed and boxes to represent days? Shouldn't be difficult. How many days?

    I do this for a 2-week period. User inputs start date on form. Textboxes on report calculate each day based on the given start date. These calculated textboxes serve as the column headers in the report Header section.

    Report RecordSource pulls names from table and lists them in Detail section of report.

    The only real trick is passing the start date into the report and several ways to approach that. One way is a textbox on report that references the date textbox (or combobox) on form.

    Data entry, however, will not look like the printed document.

    EDIT: I see rpeare posted first and also noticed you want to do this daily so really need box for only 1 day and rpeare suggestion should be adequate
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  4. #4
    alanfallow is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2014
    Location
    NE Scotland
    Posts
    31
    Hi Sorry its once a week at our scout meeting.

  5. #5
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,625
    That would still be a single day for marking attendance?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  6. #6
    alanfallow is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2014
    Location
    NE Scotland
    Posts
    31

    Thumbs up

    OK Thanks magic.

  7. #7
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,625
    But if you want to save paper, could set it up for multiple days and either calculate the dates or hand-write into blank boxes.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  8. #8
    alanfallow is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2014
    Location
    NE Scotland
    Posts
    31
    Hi i made a query then a report then add labels??

  9. #9
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,625
    Is that a question or just reporting what you accomplished?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  10. #10
    alanfallow is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2014
    Location
    NE Scotland
    Posts
    31
    No wasnt sure how to add extra fields in query.

  11. #11
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,625
    Don't really need the extra fields. But if you want them to show on printout and not have to write them, the SQL suggested by rpeare would look like:

    SELECT LastName & ", " & FirstName AS ScoutName, Date() AS AttendDate, Null AS Present FROM tablename;

    Access Help (and the web) has info on building queries and creating fields with expressions. Enter the expression on the Field row of the query design grid.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  12. #12
    alanfallow is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2014
    Location
    NE Scotland
    Posts
    31
    Ok thanks will have a go
    Thanks for the help.

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

Similar Threads

  1. Replies: 2
    Last Post: 07-05-2013, 02:32 PM
  2. List names in Report
    By Javen in forum Reports
    Replies: 3
    Last Post: 09-15-2011, 01:40 AM
  3. Rotating list of names
    By bkvisler in forum Access
    Replies: 15
    Last Post: 07-27-2011, 06:49 PM
  4. Import a list of names from Word to access
    By WickedGoodOutdoors in forum Import/Export Data
    Replies: 3
    Last Post: 01-04-2011, 05:25 PM
  5. Loop through a list of table names and compare
    By mikneus in forum Programming
    Replies: 1
    Last Post: 05-21-2010, 10:36 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