Results 1 to 15 of 15
  1. #1
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43

    table records/forms

    Is there a way to get select records over to a series of forms? I have a master table. Data comes into the master table on an Excel import and trickles down to the forms I have created. Data also comes to the master table entered manually via the forms directly. This is player registration data for a sports club.
    I have it setup this way because at this time there are multiple sources of registration data.......online data that comes to me in a CSV export as well as hard copy forms where the data has to be entered manually.
    I'd like the master table to be linked to forms created for each age group, and to have those forms populated with the appropriate records from the master table. Does that make sense? Is there a way to do that?


    .........take it eezee on me......I'm a newb........



    Semper Fi,

    Sarge

  2. #2
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    You can have as many forms as you like with the same table/query as the RecordSource. I would use a query and simply filter it based on age for the various forms. I actually see no particular reason to have more than one form, but that's your decision.

  3. #3
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43
    Well the Manager of the program would get the "base" form, which would have all the data from every player in the program. The age specific "sub" forms would be for the individual coordinators for each age group.

    So a query can be setup to "sift thru" all the records in the master table and pull out only the ones I want? So I would need a query for each age group then?

    What do I need to do with the master table to allow the data to be sifted thru......does the field I want to use as the filter need to be indexed??

    I just slapped together a basic query. I don't see how to make it do what you suggest...........

  4. #4
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    Indexing speeds up the process a bit. Either a separate query or a dynamic "WhereCondition" for your query.

  5. #5
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43
    I appreciate your help. The field I'd like to sort by is indeed indexed.

    Would you care to explain how to do what you suggest? Here or perhaps in PM?

  6. #6
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    I would start with separate queries and simply switch the RecordSource as needed. Have you played with the query builder and tried to create at least one of the queries you need?

  7. #7
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43
    waitaminnit! I'm sneekin' up onnit here......I have the query open in design view and I have all the fields I need from the records added to the query.....under the field I want to sort by, I've added the "criteria" and I get a query that displays all the records from the table that meet the criteria! Underneath the criteria field is a field labeled "or".......what/how would I use that?

  8. #8
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    You can list the same field more than once in your query and the check box determines if it is displayed. If your "Criteria" is on the same line in each field, it is an AND. If you put the "Criteria" on a different line (row) then it will be an OR.

  9. #9
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43
    SWEET! It's getting good to me...........can I setup a single query to pull records from different tables??

  10. #10
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    If those tables have a relationship.

  11. #11
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43
    Rats.......I'm reading about relationships here......the records I want to query from multiple tables are different in both. That is to say, there are no matching records between the 2 tables. Specifically:

    1 table is for the kids that want to play indoors only and one is for the ones that want to play indoors and outdoors. The query needs to pull everyone from the indoors only table and the ones tagged for both in the other table into a single query that I can use to create a "roster" of the ones who want to play indoors with.

  12. #12
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    As long as you do not want to modify the roster you can use a UNION Query.

  13. #13
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43
    That wouldn't work, as the whole deal is a work in progress. As kids register, they have to be added to the DB, and their info needs to go to the proper tables, forms or queries.

    Any other ideas on how to do what I need to do?

    I see you replied in the wee hours of the morning....don't you sleep up there in the mountains?

  14. #14
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    It sounds like they should all be in one table with separate fields for Indoors and outdoors.

  15. #15
    Sarge, USMC is offline Advanced Beginner
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    43
    I thought about that. With registration data coming from multiple sources, I can't go that way. Manual data entry from hard copy registrations would be no problem, but the problem lies with importing the data exported from the online reg system.

    Obviously I'm trying to do this as simple as possible with minimal data entry, moving towards all electronic registration.

    Can you think of any other way to do it?

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

Similar Threads

  1. Replies: 0
    Last Post: 02-24-2010, 12:56 AM
  2. Replies: 5
    Last Post: 08-06-2009, 11:47 PM
  3. Saving records in multiple sub forms
    By niak32 in forum Forms
    Replies: 0
    Last Post: 10-13-2008, 04:24 AM
  4. Replies: 3
    Last Post: 09-06-2008, 10:19 AM
  5. Replies: 1
    Last Post: 03-22-2007, 10:19 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