View Single Post
  #2  
Old May 20th, 2010, 02:19 AM posted to microsoft.public.access.gettingstarted
John W. Vinson
external usenet poster
 
Posts: 18,261
Default How to make staff sales report and stock report

On Wed, 19 May 2010 10:09:01 -0700, CAPTGNVR
wrote:

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/acc...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

--

John W. Vinson [MVP]