B
bwhite
I have two fields, Taxable (a checkbox) and Tax Amount (currency field). In
a third field, I want to display a message based on how the previous two
fields were used.
If Taxable is checked and Tax Amount is 0, then display System Calculated
If Taxable is checked and Tax Amount is >0, then display Specific Amount
If Taxable is not checked, then display Not Taxable
I have this so far and have tried multiple things, but nothing seems to work.
I don't have any experience writing VB code.
IIf([Taxable = -1 and [Tax Amount] = 0), "System Calculated", (IIf ([Taxable]
= -1 and [Tax Amount] > 0),"Specific Amount, (IIf ([Taxable] = 0, "Not
Taxable," ")" ")
a third field, I want to display a message based on how the previous two
fields were used.
If Taxable is checked and Tax Amount is 0, then display System Calculated
If Taxable is checked and Tax Amount is >0, then display Specific Amount
If Taxable is not checked, then display Not Taxable
I have this so far and have tried multiple things, but nothing seems to work.
I don't have any experience writing VB code.
IIf([Taxable = -1 and [Tax Amount] = 0), "System Calculated", (IIf ([Taxable]
= -1 and [Tax Amount] > 0),"Specific Amount, (IIf ([Taxable] = 0, "Not
Taxable," ")" ")