S
stockwell43
Hello,
I have this code in the After update even of the payment CBO but it doesn't
work. What I want is if the purchase cbo is Wear Jeans throughout (which is
$25) then I want the quantity times the $25 to show the total in an unbound
textbox named total. What I am I doing wrong?
Thanks!!
Private Sub Payment_AfterUpdate()
If Me.Purchase = "Wear Jeans Throughtout" Then
Total = "Me.Quantity" * "25"
End If
End Sub
I have this code in the After update even of the payment CBO but it doesn't
work. What I want is if the purchase cbo is Wear Jeans throughout (which is
$25) then I want the quantity times the $25 to show the total in an unbound
textbox named total. What I am I doing wrong?
Thanks!!
Private Sub Payment_AfterUpdate()
If Me.Purchase = "Wear Jeans Throughtout" Then
Total = "Me.Quantity" * "25"
End If
End Sub