Page 2 of 2 FirstFirst 12
Results 16 to 17 of 17
  1. #16
    June7's Avatar
    June7 is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,772
    Instead of 5 tables, really should just be 1 table with another field for category (cord, fabric, montage, packing, profile).

    Then 1 query can serve as the report RecordSource.

    The single table structure can be emulated with a UNION query. There is no designer for UNION query, must type or copy/paste in SQLView of query builder.

    SELECT zlecenie, user_ID, time_cord AS time_enter, date_cord AS date_enter, quantity, "Cord" AS Category FROM tblCord
    UNION SELECT zlecenie, user_ID, time_fabric, date_fabric, quantity, "Fabric" FROM tblFabric
    UNION SELECT zlecenie, user_ID, time_montage, date_montage, quantity, "Montage" FROM tblMontage
    UNION SELECT zlecenie, user_ID, time_packing, date_packing, quantity, "Packing" FROM tblPacking
    UNION SELECT zlecenie, user_ID, time_profile, date_profile, quantity, "Profile" FROM tblProfile;



    Now use that query like a table in another query to do the time calculations. Make that query the report RecordSource.
    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.

  2. #17
    BigJohn89 is offline Advanced Beginner
    Windows 10 Access 2016
    Join Date
    Dec 2017
    Posts
    37
    Works perfect You are the best! Thank you so much!

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. : how can I sum stopwatch time
    By msamir12 in forum Access
    Replies: 18
    Last Post: 01-12-2016, 08:55 PM
  2. QA tracker Database
    By vmoness in forum Access
    Replies: 2
    Last Post: 07-22-2015, 08:52 AM
  3. Tracker Database
    By vimkumar in forum Database Design
    Replies: 4
    Last Post: 07-21-2015, 10:49 AM
  4. Replies: 1
    Last Post: 04-01-2014, 10:54 AM
  5. Creating a Time Tracker
    By share knowledge in forum Reports
    Replies: 0
    Last Post: 03-01-2010, 01:00 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