Hello,
I have a userform with a label "txtRest" using the following code to get the total amount. (this code is in subroutine "txtTotal_Change")
Me.txtRest = (IIf(Format(Me.txtTotal, "#,##0") = "", 0, (Format(Me.txtTotal, "#,##0"))) + 0) - (IIf(Format(Me.txtPaid, "#,##0") = "", 0...