Jump to content

Trailing sub-summary data


This topic is 8430 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This topic is 8430 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.