I have this in the Lost Focus event:
Private Sub txtSumAmtsDue1_LostFocus()
Me.txtAmtDue = [txtSumAmtsDue1] + [txtSumAmtsDue2] + [txtSumAmtsDue3] + [txtSumAmtsDue4] _
+ [txtSumAmtsDue5] + [txtSumAmtsDue6] + [txtSumAmtsDue7]
End Sub
When I test it out it, the text box txtAmtsDue just goes blank. I also tried using the code above with me.txtSumAmtsDue1 + me.txtSumAmtsDue2 + etc....
with the same results. What am I doing wrong?