Hello Again,
Summing the columns is not working after using the field names. Here is the code:
Code:
=Sum(Nz([Inventory]![StockQtyMade])-Nz([Inventory]![StockQtySold])+Nz([Inventory]![StockQtyShrink]))
I am also not getting the Allowadditions, New Record, and Don't allow additions to work. No record appears after running the following code:
Code:
Private Sub NewRecord_Click()
Me.AllowAdditions = True
DoCmd.GoToRecord , , acNewRec
Me.AllowAdditions = False
End Sub
This should not be this difficult. I am obviously doing something wrong here. What I need is some explanations on why these things are not working.