I have a field on a form that is calculates tax on another field called Account_Total. Right now, the calculation in the Tax field is as follows:
This is the event procedure for the form's Op Open event:
If Me.Check20 = False Then
Me.Tax = Me.Account_Total * 0.065
Else
Me.Tax = 0
End If
But when you try to open the form, it gives the error message: "You can't assign a value to this object". When you click on Debug it's highlight the line Me.Tax = Me.Account_Total * 0.065
Please provide any thoughts you may have. Thank you in advance.
This is the event procedure for the form's Op Open event:
If Me.Check20 = False Then
Me.Tax = Me.Account_Total * 0.065
Else
Me.Tax = 0
End If
But when you try to open the form, it gives the error message: "You can't assign a value to this object". When you click on Debug it's highlight the line Me.Tax = Me.Account_Total * 0.065
Please provide any thoughts you may have. Thank you in advance.