Hi Luke,
I have two tax Condition :
IF country = CA and state <> BC then 5%
IF country = CA amd state == BC then 12%
Now we need a thired condition :
IF country = CA and state = NB or state = NS or state = NF then 13%
I added a third Tax region in my table and update my first region :
IF Country = CA and State <> BC and state <>NB and state <> NS and Sate <> NF
Done, by adding three different rows.
|