How to make daily stock inventory

Moore71

DEVELOPER
Local time
Today, 15:54
Joined
Jul 14, 2012
Messages
158
Hi guys,i have an inventory app,i want an idea on how to make daily opening stock /closing stock.I want the system done automatically,that is as users exit,closing stocks & next day opening stocks as users log in.Then daily stock reports can be generated.
Thanks in advance anyway
 
Opening/Closing stock is a calculated figure, so should be calculated.

For this figure you will need something like

Code:
OpeningStock=DSUM("[StockTrans]","tblStock","TranDate<Date() AND StockID=" & me.stockID)
ClosingStock=DSUM("[StockTrans]","tblStock","TranDate<=Date() AND StockID=" & me.stockID)
 
Thanks for the response.This is an eye opener to me that nothing is impossible with good thinking
Thanks alot
 

Users who are viewing this thread

Back
Top Bottom