- Local time
- Today, 04:02
- Joined
- Feb 19, 2002
- Messages
- 47,360
You're not doing anything with it:
If Me.NewRecord Then
Else
txtFinalPalletCharge = txtQty * txtCurrentPalletCost
End If
If this is a new record, you don't want to do the calculation but if it is not, you do.
If Me.NewRecord Then
Else
txtFinalPalletCharge = txtQty * txtCurrentPalletCost
End If
If this is a new record, you don't want to do the calculation but if it is not, you do.