Results 1 to 2 of 2
  1. #1
    artefact is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2015
    Posts
    4

    Access 2010 report

    Hello,


    I'd like to work out a report based on 2 tables.
    The goal is to link the table of ordered qties and delivered qties according to FK of
    ordered qties table and the delivery dates (delivered qties table).

    Table of orders

    Click image for larger version. 

Name:	TOO.jpg 
Views:	7 
Size:	10.5 KB 
ID:	21805

    Table of deliveries

    Click image for larger version. 

Name:	TOD.jpg 
Views:	7 
Size:	25.4 KB 
ID:	21806

    Report

    Click image for larger version. 

Name:	Report.jpg 
Views:	7 
Size:	26.6 KB 
ID:	21807

    The report will link the table. One important thing, I have to update the right value on the FK field in the table of deliveries.

    Is it possible to do that via access 2010?

    Thanks!



    Arte

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,527
    yes, make a query by joining the 2 tables, tDeliveries, & torders
    Try summing things 1 table at a time in these queries:
    qsDeliverySum = select [PK], [designation], Sum([Qtys]) from tDeliveries
    qsOrderSum = select [FK], [designation], Sum([Qtys]) from tOrders

    then join the 2 queries together on keys
    select [designation], [SumOfQtys], [SumDeliveries] from qsDeliverySum, qsOrderSum inner join [qsDeliveries].[FK] = [qsOrders ].[PK]


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

Similar Threads

  1. Conditional Formatting on an Access 2010 Report
    By ecalvert47462 in forum Reports
    Replies: 1
    Last Post: 02-18-2014, 12:18 PM
  2. Sustotals in report Access 2010
    By joylove89 in forum Reports
    Replies: 2
    Last Post: 11-10-2013, 12:54 PM
  3. Replies: 2
    Last Post: 08-15-2013, 10:10 AM
  4. Access 2010 Report
    By kowen091010 in forum Access
    Replies: 3
    Last Post: 12-12-2011, 03:36 PM
  5. Access 2007 report does not work in 2010
    By luppi13 in forum Reports
    Replies: 5
    Last Post: 09-07-2011, 03:05 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