I have a form and a subform. In the main form I have a date field. In the subform I have a PK, Product, and a calculated field. When I enter a date into the date field it is suppose to update the list of products for that date and give the total for that date. In the after update I placed Me.Requery also
DoCmd.RunCommand acCmdRefreshPage and received a message that Me. and DoCmd. does note exist or was not saved.
In the calcutated field I have
=onHand([pkProductID],Forms!FrmMyDate!InvDateQty)
DoCmd.RunCommand acCmdRefreshPage and received a message that Me. and DoCmd. does note exist or was not saved.
In the calcutated field I have
=onHand([pkProductID],Forms!FrmMyDate!InvDateQty)