How to make staff sales report and stock report

C

CAPTGNVR

Dear All

First table with names. second table with store items.

I read the northwind for preparing invoices which does not fit my requirement.

Pls give me links for me to read up on how to prepare report on persons who
have made purchases by linking these two tables.

Pls give any links where I can read on how to go about to prepare a report
on persons who made purchases; report of stores opening stock, quantity sold
and stock balance etc.
Edit/Delete Message
 
J

John W. Vinson

Dear All

First table with names. second table with store items.

I read the northwind for preparing invoices which does not fit my requirement.

Pls give me links for me to read up on how to prepare report on persons who
have made purchases by linking these two tables.

You need at least one more table - to record purchases.

You cannot put a link to the Items table in the people table, because a person
may purchase more than one item. Similarly, you cannot put a field for People
in the Items table, because many people may purchase a given item.

Therefore you need a third table, with a PersonID (a link to the primary key
of the table of people), an ItemID (link to the table of items), and doubtless
other fields - date purchased, quantity purchased, price paid, etc.

You may need yet more tables. The Northwind sample database has tables for
Customers, Products, Orders, and OrderDetails, since a given purchasing event
may involve multiple products.
Pls give any links where I can read on how to go about to prepare a report
on persons who made purchases; report of stores opening stock, quantity sold
and stock balance etc.
Edit/Delete Message

Here are some resources that may help. Check out the tutorials and Crystal's
video:

Jeff Conrad's resources page:
http://www.accessmvp.com/JConrad/accessjunkie/resources.html

The Access Web resources page:
http://www.mvps.org/access/resources/index.html

Roger Carlson's tutorials, samples and tips:
http://www.rogersaccesslibrary.com/

A free tutorial written by Crystal:
http://allenbrowne.com/casu-22.html

A video how-to series by Crystal:
http://www.YouTube.com/user/LearnAccessByCrystal

MVP Allen Browne's tutorials:
http://allenbrowne.com/links.html#Tutorials
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top