M
myxmaster
Thanks to Fred I have almost resolved this issue. The only problem is
If I enter the transactionType (Withdrawal-Deposit), after I have
entered the amount, regardless of the choice made the amount number
stays at a positive amount.
f IsNull([Transaction Type]) Then
If I enter the transactionType (Withdrawal-Deposit), after I have
entered the amount, regardless of the choice made the amount number
stays at a positive amount.
f IsNull([Transaction Type]) Then
TIAMsgBox "You Must select either Withdrawal or Deposit."
Exit sub
End If
If Me.[Transaction Type] = "Deposit" Then
If Me.[Amount] >0 Then
Me.[Amount] = Me.[Amount] * -1
End If
Else
If Me.[Amount] < 0 Then
Me.[Amount] = Abs(Me.[Amount])
End If
End If