Results 1 to 15 of 15
  1. #1
    dr4ke is offline Competent Performer
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    108

    Data Entry & Multiple Table Reference

    Good afternoon,

    I am currently very (VERY!!) new to access, but I'm looking to convert (half-convert) from Excel to make certain tasks easier! One of these tasks is the following;



    Every month I receive a report, with about 10 columns, in excel. We'll call that report 'Report1' (mind-blowing huh!?). I think have to cross reference Report1, against the previous data that I hold in my logging system.

    What I'd like to do is to have a interface; so that when the Access file is opened it will ask for the data from 'Report1' and then the new months data from the logging system.

    Then...(yes there's more), I'd like to compare one set of data in 'Report1' called 'Reference' to the previous call logging data (at the moment I have 3 months, but this will grow every month to +1), and if it finds that information in any of the other 'tables' it will pull out the relevant data from the call logging data.

    I hope that makes sense, and if it's possible; well i'd be very grateful if somebody could explain HOW it works, so I can learn as well as improve what i'm using

    Thanks in advance,
    Dr4ke

  2. #2
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    Welcome to the site. The lack of replies all day would imply that nobody really understands the question. I know I don't. You aren't storing each month's data in a new table, are you? That would be a normalization mistake. Typically you'd have the data in one table, with a date field. Perhaps you can post a sample of the data and the result you expect to achieve?
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  3. #3
    dr4ke is offline Competent Performer
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    108
    Thank you for your response, I can't seem to attach the database (even when zipped) perhaps I could email your direct?

    Rgrds,
    Dr4ke

  4. #4
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    Did you compact/repair before zipping? That will make most db's small enough.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  5. #5
    dr4ke is offline Competent Performer
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    108
    Yeah it's only 10,000kb - not sure why it wont let me attach it. Strange!

  6. #6
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    You can email it to

    removed
    Last edited by pbaldy; 06-20-2012 at 09:02 AM.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  7. #7
    dr4ke is offline Competent Performer
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    108
    Thanks mate :-)

    have emailed.

  8. #8
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    Here is the text of your email and the file for the forum (all I had to do was compact/repair):

    Report 1 is the data that will be incoming from a third party every month. Logging Data are the reports that I will have to input every month, from our call logging system. So, essentially, moving forward every month there will be a new ‘Report 1’ to replace to previous, and an additional ‘Logging Data’ which won’t replace the previous data.

    What I would like to do is, using the ‘Customer Reference’ in ‘Report 1’ lookup in the different ‘Logging data’ tables, and then display certain fields from the ‘logging data’ along with data from ‘Report 1’.

    I’m not sure if this can be automated into an interface where you enter the data in and it automatically adds a new table and amends the query automatically to include it in this months search?

    I hope that makes a little bit more sense?

    Thanks,
    Dr4ke
    Attached Files Attached Files
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  9. #9
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    The more normalized approach would be not to have the monthly tables for logging data. I would probably have that data in one table, with an additional field for the date. If this is data you get somehow, you could run an append query to add it to your table. Otherwise you're looking at a UNION query to pull all the logging data into one place so you can lookup the customer reference.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  10. #10
    dr4ke is offline Competent Performer
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    108
    Im happy to have the monthly data in the same tab, but how do i think get the query to copy across to the new 'third party' data?


    regards,
    Dr4ke

  11. #11
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    Where does it come from? You said "I will have to input every month", so you could input into this table. If you have it in a table or spreadsheet, you should be able to run an append query to copy it into the "one" table.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  12. #12
    dr4ke is offline Competent Performer
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    108
    It comes from a third party company, but i'd like to have a seperate report for every months data.

  13. #13
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    If it's all in one table with a date field, you can easily isolate any month's activity with a parameter query.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  14. #14
    dr4ke is offline Competent Performer
    Windows 7 32bit Access 2007
    Join Date
    Jun 2012
    Posts
    108
    Thank you :-)

  15. #15
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,530
    No problem. Post again if you run into problems.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

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

Similar Threads

  1. Replies: 5
    Last Post: 08-12-2013, 12:53 AM
  2. Multiple data entry question
    By Appeal in forum Forms
    Replies: 3
    Last Post: 01-06-2012, 11:40 AM
  3. Replies: 1
    Last Post: 11-19-2011, 10:36 PM
  4. Multiple Data Entry
    By Chad E in forum Forms
    Replies: 2
    Last Post: 10-18-2011, 02:49 PM
  5. Replies: 0
    Last Post: 08-01-2009, 12:43 PM

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