Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

creating a report that preforms a calcualation

Status
Not open for further replies.

scott6480

Technical User
Sep 11, 2003
5
US
I am very new to access and i am trying to create a report that shows expenses for each deal transactions.

I have a table freight and a table storage.

I need to run the report that will thake the total $ storage and total $ warehousing fee (if there is any) and add them by deal number which both tables have.

can someone give me a hint at what i need to do?
 
Base your report on a query like this

SELECT (SUM([Storage$])+SUM([WarehousingFee$])) AS Total
FROM TableStorage INNER JOIN TableFreight ON TableStorage.DealNumber = TableFreight.DealNumber
GROUP BY TableStorage.DealNumber

John Borges
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top