R
RAH
I'm trying to save a calculated field to a field in a
table. The calculations are as simple as:
Field1+Field2+Field3, etc. But the entries may be one
entry one day another entry on another day, and so on.
The calculation field works fine however, I have not been
able to save this to my table. I tried using the
following code with "Before Update", "After Update", "On
Change", etc. The only one that seems to work is "Got
Focus":
Private Sub TotalUnits2_GotFocus()
Me.TotalUnits.Value = Me.TotalUnits2
End Sub
However, I have to enter the field before it will add the
totals to the table. Does anyone have any suggestions?
table. The calculations are as simple as:
Field1+Field2+Field3, etc. But the entries may be one
entry one day another entry on another day, and so on.
The calculation field works fine however, I have not been
able to save this to my table. I tried using the
following code with "Before Update", "After Update", "On
Change", etc. The only one that seems to work is "Got
Focus":
Private Sub TotalUnits2_GotFocus()
Me.TotalUnits.Value = Me.TotalUnits2
End Sub
However, I have to enter the field before it will add the
totals to the table. Does anyone have any suggestions?