Back again. I’m trying to code a form so that it will look to see if the Account is Tax Exempt or not and the apply tax accordingly. Whenever I use If/than statements with yes/no controls I have no luck. This is what I wrote.
If me.TaxeExpemptStatus.value = “No” then
[SalesTax] = [LaborCost] * .06
Else: [SalesTax] = 0
End if
And, I’ve tried:
If me.TaxeExpemptStatus.value = “No” then
[SalesTax] = [LaborCost] * .06
Else if me.TaxExepmtStatus.value = “Yes” then
[SalesTax] = 0
End if
I’ve tried taking out the word “value” as well as putting in -1 for no and 1 for yes and still the code doesn’t run.
Leesha