Hello. I have a form with some calculated values. They're working great. However, if I need to remove sales tax from the equation, I would need to be able to do that. So I thought I would create a yes/no check box on the form. Put it right next to the box that calculates the sales tax (TotalTax) and then put an IIF statement in the control source of the checkbox. Here's what I put in there: = IIf([TaxFreeCheck],"0","") AS TotalTax
Yet it does not work. Why is that?
Thank you in advance.