D
David
I need help in populating a field from a static table into an empty
field on my main table so that I can bring in defaults. I have been
successful with the first two fields, but the third one -
tblRetToWkMain.BalancingNewInj will not populate.
tblRetToWkMain.DiagSpecsNewInj and tblRetToWkMain.Weight2NewInj
populate fine. What am I doing wrong on the third one that will not
allow it to populate? Thanks so much for any help you can give me.
David
Private Sub cboDiagIDNewInj_AfterUpdate()
Me.[tblRetToWkMain.DiagSpecsNewInj] =
[tblDiagnosisNewInj.DiagSpecsNewInj] & " " & " "
If [tblDiagnosisNewInj.Weight2NewInj] >= 1 Then
Me.[tblRetToWkMain.Weight2NewInj] =
[tblDiagnosisNewInj.Weight2NewInj] & " " & " "
End If
If [tblDiagnosisNewInj.BalancingNewInj] = Not Null Then
Me.[tblRetToWkMain.BalancingNewInj] =
[tblDiagnosisNewInj.BalancingNewInj] & " " & " "
End If
End Sub
field on my main table so that I can bring in defaults. I have been
successful with the first two fields, but the third one -
tblRetToWkMain.BalancingNewInj will not populate.
tblRetToWkMain.DiagSpecsNewInj and tblRetToWkMain.Weight2NewInj
populate fine. What am I doing wrong on the third one that will not
allow it to populate? Thanks so much for any help you can give me.
David
Private Sub cboDiagIDNewInj_AfterUpdate()
Me.[tblRetToWkMain.DiagSpecsNewInj] =
[tblDiagnosisNewInj.DiagSpecsNewInj] & " " & " "
If [tblDiagnosisNewInj.Weight2NewInj] >= 1 Then
Me.[tblRetToWkMain.Weight2NewInj] =
[tblDiagnosisNewInj.Weight2NewInj] & " " & " "
End If
If [tblDiagnosisNewInj.BalancingNewInj] = Not Null Then
Me.[tblRetToWkMain.BalancingNewInj] =
[tblDiagnosisNewInj.BalancingNewInj] & " " & " "
End If
End Sub