Newbies MauraJuniu Posted February 23, 2001 Newbies Posted February 23, 2001 I have put together a shipping report that creates a total of the single product ordered by a particular buyer. I want to take that information and tranfer it into a database that lists sales of the products in units and dollars. When I set the total as a look-up to the sub-summary in the other database, I got a running total of all items shipped rather than just the specific product. Any ideas on how I can make this work? Thank you, Maura
BobWeaver Posted February 27, 2001 Posted February 27, 2001 I'll refer to your files as DB1 (shipping report) and DB2 (sale summary by product) Set up a relationship from DB2 to DB1 based on the product ID. Then, in DB2 set up calculated fields: Units = Sum(DB1::QtySold) Dollars = Sum(DB1::Price) I'm making some assumptions here about how your files are set up. So, if this doesn't make any sense, you will have to give me a few more details.
Newbies MauraJuniu Posted February 27, 2001 Author Newbies Posted February 27, 2001 Thank you for this clear and simple solution.
Recommended Posts
This topic is 8670 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now