Hi bronson,
I am guessing macros but is the database designed using macros or VBA code, essentially a constraint needs to be put in so that the # issued cannot be greater than the # in stock. How this would be done depends on the method of design used in the database.
If it is through VBA code it would simply fall similar to the below when you click submit or save or whichever action from the issue form that actually executes the issue:
Code:
if stockcount < requestedissuecount then
msgbox "The requested stock to issue is not currently available, there are only " & stockcount & " of this item in stock."
Exit Sub
else
........ code as currently exists to do the issue
end if
For macros, would probably be easier to look at it if you were able to upload the database as I rarily use the macros but am sure I could easily determine how to implement the constraint.
Thanks,
Dave