Help with an update query

workwork

New member
Local time
Yesterday, 20:15
Joined
Dec 14, 2013
Messages
2
I'd like to create a query where when a book is ordered, the book quantity in a different table is updated and subtracts the quantity ordered.

I'd also like another query where, when a books quantity falls below 5, the book title, with the reorder level is sent to either a new table called something like tblReorder or somewhere else where it can be picked up in a report.

I'm happy to do vba and sql.

Can someone help me?

I have very basic knowledge of access so please explain as if talking to an idiot.
 
Thank you for your help!

I've managed the first but I'm still struggling with the second.

So I've used tblBook and have brought down the BookID, Title, Author, Quantity, ReorderLevel, ReorderQuantity. I basically want it so that when the Quantity is below the ReorderLevel, the Title, Author and Reorder Quantity are sent to tblReorder or something.
 
Last edited:
To get a list of the "Books" that are below their reorder point, I agree with Alex.

SELECT the fields you want FROM YourTableName
Where Quantity < ReOrderLevel
 

Users who are viewing this thread

Back
Top Bottom