D
D. M.
Hi All,
I have created a query that Subtotals a row of figures in a table, then adds
the appropriate tax for each location (based on province and country). I am
using the following nested IIf statement:
Sales Tax:
IIf([StoreProvince]="NB",[SubTotal]*0.15,IIf([StoreProvince]="NL",[SubTotal]*0.15,IIf([StoreProvince]="NT",[SubTotal]*0.15,IIf([StoreCountry]="US",0,[SubTotal]*0.07))))
Although I'm sure that there's another way to do this, this works as it is.
Here's the problem: the sales tax rates are changing July 1st. I would like
to continue to show the above rates for payments made prior to July 1st.
Is there an easier way to do this?
Thanks.
I have created a query that Subtotals a row of figures in a table, then adds
the appropriate tax for each location (based on province and country). I am
using the following nested IIf statement:
Sales Tax:
IIf([StoreProvince]="NB",[SubTotal]*0.15,IIf([StoreProvince]="NL",[SubTotal]*0.15,IIf([StoreProvince]="NT",[SubTotal]*0.15,IIf([StoreCountry]="US",0,[SubTotal]*0.07))))
Although I'm sure that there's another way to do this, this works as it is.
Here's the problem: the sales tax rates are changing July 1st. I would like
to continue to show the above rates for payments made prior to July 1st.
Is there an easier way to do this?
Thanks.