I have a calculated field on my form and after another field is updated I
let its afterupdate event requery the calculation:
Private Sub FM_AfterUpdate( )
DoCmd.Echo False
DoCmd.RunComman d acCmdSaveRecord
NrOfMales.Reque ry
DoCmd.Echo True
End Sub
At the moment the calculated field gets updated but while calculating the
field shows no value (field is white). I'd like the field to move from the
old value straight to the new value. I tried the DoCmd.Echo method but no
luck.
Any ideas on how to achieve this?
Thanks,
John
let its afterupdate event requery the calculation:
Private Sub FM_AfterUpdate( )
DoCmd.Echo False
DoCmd.RunComman d acCmdSaveRecord
NrOfMales.Reque ry
DoCmd.Echo True
End Sub
At the moment the calculated field gets updated but while calculating the
field shows no value (field is white). I'd like the field to move from the
old value straight to the new value. I tried the DoCmd.Echo method but no
luck.
Any ideas on how to achieve this?
Thanks,
John
Comment