I have multiple text boxes, and a text box to display the sum, I have tried this
Sub GetSumOfTbs()
Me.Textbox3 = (IIf(Me.Textbox1 = "", 0, Me.Textbox1) + 0) + (IIf(Me.Textbox2 = "", 0, Me.Textbox1) + 0)
End Sub
It doesn't do anything at all, when I type in a number in the field.