bigfatgreedykat Posted July 2, 2007 Posted July 2, 2007 Hello all I have a great invoice table thats been working great. Unfortunately, we now have a client in EU. I 've been informed that we don't charge VAT to clients based in EU. I 've created a field on my contacts list named COUNTRY with a drop down box UK or EU. If the drop down box states EU is there a way that calculation field for VAT not be used or made to = 0? Look forward to any replies! I will keep working on an answer! regards BFGK
Inky Phil Posted July 2, 2007 Posted July 2, 2007 Make your vat amount field a calc field and use the following calc Case(Country="EU";0;your current vat calc) This will set the vat amount to 0 if the field country = EU or will set it to your current vat result otherwise HTH phil
bigfatgreedykat Posted July 2, 2007 Author Posted July 2, 2007 Thanks I used the following: If(Wholesale Contacts::Country="UK";Total Net * 17.5/100;0) Seems to work!!! BFGK
mr_vodka Posted July 2, 2007 Posted July 2, 2007 Do not hard code the 17.5 in the calc itself. Store it in a filed in a preferences table since tax rates change all the time. So the value of Preferences::Taxrate would be .175
Recommended Posts
This topic is 6414 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now