For those who can get their including vat prices into excel, the formula you want will be:
A1 is the cell reference in which the price currently sits.
REMEMBER: The figures in blue need to match the vat rates you charge for those of you with differing rates.
MAKE SURE you change them correctly:
1.175 = 17.5%
1.15 = 15%
1.10 = 10%
1.08 = 8%
etc.
If your prices are net of vat, then all you need to do is change the vat rate in actinic on the tax tab in business settings.
If you have 2 PC's, then setup a copy site and test it all, so you can just go live on Monday with no panic.
You could even put the change live a little earlier and use it as a marketing plan, so people are not waiting for it!
If any of you manually added the tax messages into actinic, remember to change them manually.
And finally, IF anyone has added the "component prices to include VAT" fix out of the AUG, then you will also need to adjust that fix manually.
Code:
=ROUND(SUM(A1/1.175)*1.15,0)
REMEMBER: The figures in blue need to match the vat rates you charge for those of you with differing rates.
MAKE SURE you change them correctly:
1.175 = 17.5%
1.15 = 15%
1.10 = 10%
1.08 = 8%
etc.
If your prices are net of vat, then all you need to do is change the vat rate in actinic on the tax tab in business settings.
If you have 2 PC's, then setup a copy site and test it all, so you can just go live on Monday with no panic.
You could even put the change live a little earlier and use it as a marketing plan, so people are not waiting for it!
If any of you manually added the tax messages into actinic, remember to change them manually.
And finally, IF anyone has added the "component prices to include VAT" fix out of the AUG, then you will also need to adjust that fix manually.
Comment