R
Rob W
Greetings,
Calculated result is a field that is updated based on the two other fields,
this is done in the subforms query and as based on an expression cannot be
overtyped (which is good!).
All I want to do is once a value appears in the field is to populate another
field (see code below).
Runs without errors but see no results. Any help would be appreciated.
Private Sub CalculatedResult_AfterUpdate()
Dim CResult As Integer
CResult = Me.CalculatedResult.Value
Me.ActualResult.Value = CResult
Me.ActualResult.Requery
End Sub
Thanks
Rob
Calculated result is a field that is updated based on the two other fields,
this is done in the subforms query and as based on an expression cannot be
overtyped (which is good!).
All I want to do is once a value appears in the field is to populate another
field (see code below).
Runs without errors but see no results. Any help would be appreciated.
Private Sub CalculatedResult_AfterUpdate()
Dim CResult As Integer
CResult = Me.CalculatedResult.Value
Me.ActualResult.Value = CResult
Me.ActualResult.Requery
End Sub
Thanks
Rob