UK Vat & Duty Calculator - A simple freeware tool - Page 2 - The Wholesale Forums
 
 
 
Home  |  Register  |  Members  |  Calendar
Welcome to The Wholesale Forums! All times are GMT +1. The time now is 11:24 PM.

Old 20-06-2007, 08:33 PM   #11 (permalink)
redfanatic
Community Member
 
redfanatic is offline

Join Date: Jun 2007
Location: England, U.K
Posts: 79
iTrader: (0)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

Great Program! Nice One!
Reply With Quote
Old 21-06-2007, 01:07 PM   #12 (permalink)
Jezz
Community Member
 
Jezz is offline

Join Date: Jun 2007
Location: Australia
Posts: 43
iTrader: (0)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

Thanks for all your interest and advice

I've just added an update version, I'm still calling it a demo till someone can confirm that the results are correct.
I've changed the code to this:
Code:
                // Calculate Duty on goods
                DutyPayable = InitialPrice/100 * DutyRate;
                // Add this to the inital price
                InitialPrice += DutyPayable;
                // Add Shipping and Insurance
                InitialPrice += Shipping + Insurance;
                // Calculate VAT on the lot
                VatPayable =  InitialPrice/100 * VatRate;
                // Calculate the total
                TotalPrice = InitialPrice + VatPayable;
Does this look right?

Quote:
Originally Posted by D M View Post
P.S
This is what spreadsheets are for!
lol.. this is a pretty good point
I've never been a real fan of spreadsheets myself though.
Anyhow it gave me something to do
Reply With Quote
Old 21-06-2007, 01:21 PM   #13 (permalink)
D M
Community Member
 
D M is online now

Join Date: Jun 2007
Location: UK
Posts: 1,321
iTrader: (0)
Thanks: 3
Thanked: 27 Times in 25 Posts

Default

DutyPayable = ( C.I.F ) / 100 * DutyRate

For VAT there's also something called "VAT value adjustment", but I wouldn't worry about that.
Reply With Quote
Old 21-06-2007, 01:31 PM   #14 (permalink)
D M
Community Member
 
D M is online now

Join Date: Jun 2007
Location: UK
Posts: 1,321
iTrader: (0)
Thanks: 3
Thanked: 27 Times in 25 Posts

Default

Here's a spreadsheet I use to get a rough cost before asking for a quote from supplier:



If someone has to pay VAT + Duty in the UK it means it comes from outside the EU. Chances are they are not paying in pounds sterling (£), which makes things even more complicated.

You won't know the exact exchange rate for purchasing the goods until you make the transfer and then customs use a different (monthly) exchange rate !
Reply With Quote
Old 21-06-2007, 01:55 PM   #15 (permalink)
Jezz
Community Member
 
Jezz is offline

Join Date: Jun 2007
Location: Australia
Posts: 43
iTrader: (0)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

Thankyou D M

Of course, higher tax = a better tax system!

I've just changed the code and uploaded a new version again.
Code:
                // C = InitialPrice, I = Insurance, F = Shipping
                DutyPayable = (InitialPrice + Insurance + Shipping)/100 * DutyRate;
                // Apply Duty
                InitialPrice += DutyPayable;
                // Calculate VAT 
                VatPayable =  InitialPrice/100 * VatRate;
                // Apply VAT
                TotalPrice = InitialPrice + VatPayable;
Thanks heaps for sharing, I really appreciate it
I'll take a look at this tomorrow it's late here.

Cheers,
Jeremy
Reply With Quote
Old 22-06-2007, 08:50 AM   #16 (permalink)
cdtronix
Community Advertiser
 
cdtronix's Avatar
cdtronix is offline

Join Date: May 2007
Location: UK
Posts: 198
iTrader: (1)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

I like it mate, it looks good, how far away is a full version ?
__________________
Satellite TV, Dishes, LNB's, Cams, Receivers, XXX Adult Viewing Cards etc
Dropshipping available. CLICK HERE for an application form. http://www.cdtronix.com
Reply With Quote
Old 22-06-2007, 10:18 AM   #17 (permalink)
Jezz
Community Member
 
Jezz is offline

Join Date: Jun 2007
Location: Australia
Posts: 43
iTrader: (0)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

Hi cdtronix,

I've kept it as a demo because I'm not a 100% sure that's it's producing the correct results.
If it is then it's not a demo anymore
I think the code above is fairly easy to understand, so hopefully someone can confirm that it's working properly.

If it is... and no one can crash it, I'll call it a full version and remove the warning.
I am thinking of more features to add, but not tonight.
My wife has banned me from using my PC

Cheers,

Jeremy
Reply With Quote
Old 22-06-2007, 10:22 AM   #18 (permalink)
cdtronix
Community Advertiser
 
cdtronix's Avatar
cdtronix is offline

Join Date: May 2007
Location: UK
Posts: 198
iTrader: (1)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

Quote:
Originally Posted by Jezz View Post
but not tonight.
My wife has banned me from using my PC

LOL know that feeling !
__________________
Satellite TV, Dishes, LNB's, Cams, Receivers, XXX Adult Viewing Cards etc
Dropshipping available. CLICK HERE for an application form. http://www.cdtronix.com
Reply With Quote
Old 22-06-2007, 10:46 AM   #19 (permalink)
DSC
Community Members
 
DSC is offline

Join Date: Dec 2005
Location: England
Posts: 1,078
iTrader: (0)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

Ok, so this isn't going to work to well perhaps I should have just explained it in words.


// Calculate Duty on goods
DutyPayable = InitialPrice += Shipping + Insurance/100 * DutyRate;
// Add this to the InitialPrice += Shipping + Insurance
InitialPrice += Shipping + Insurance +=DutyPayable;
// Calculate VAT on the lot
VatPayable = InitialPrice += Shipping + Insurance + DutyPayable/100 * VatRate;
// Calculate the total

First of all disregard VAT and just work out your duty on C I F total, then add Duty C I F together and work out your VAT add them all up and you have your total cost.
Reply With Quote
Old 22-06-2007, 11:02 AM   #20 (permalink)
Jezz
Community Member
 
Jezz is offline

Join Date: Jun 2007
Location: Australia
Posts: 43
iTrader: (0)
Thanks: 0
Thanked: 0 Times in 0 Posts

Default

Thanks DSC ,

I should have quoted the latest code again it's
Code:
// C = InitialPrice, I = Insurance, F = Shipping
DutyPayable = (InitialPrice + Insurance + Shipping)/100 * DutyRate;
// Apply Duty
InitialPrice += DutyPayable;
// Calculate VAT 
VatPayable =  InitialPrice/100 * VatRate;
// Apply VAT
TotalPrice = InitialPrice + VatPayable;
This is what's in the application at the moment, So I think this must be correct

Edit: Actually studying what you have written more closely, maybe it isn't
It's a job for the morning anyhow...

Last edited by Jezz; 22-06-2007 at 11:12 AM..
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
VAT and Import Duty - Your Questions Answered malcolmk133 Import/Export, VAT/Tax and Legal Discussion 93 25-11-2008 10:29 AM
Individual Selling Goods Online, Legalities jaguar65 Advertising and e-Commerce Discussion 21 25-06-2008 04:36 PM
import duty and vat quick quest 3701 Import/Export, VAT/Tax and Legal Discussion 11 09-01-2008 01:18 AM
VAT help. andy Import/Export, VAT/Tax and Legal Discussion 33 03-08-2007 09:55 AM
VAT and/or duty?? wba88 Import/Export, VAT/Tax and Legal Discussion 2 22-05-2007 12:30 PM


All times are GMT +1. The time now is 11:24 PM.

Control Panel
Member Login:
Quick Navigation
Register
Forum Rules
Advertising Opportunities
Member of the Month
Top Contributors
Contact Us
Advertisement
Member of the Month
TWF - Member of the Month AwardDecember 2008
Costaconsoles
Popular Discussions
Recession, hard times?
Pound getting weaker
eBay suspensions galore?
Opening online store
Tips for new members
Useful Articles
Tips for Supplier Checking
Dealing with the Chinese
Sourcing Products Abroad
UK VAT and Import Duties
Approaching Wholesalers
Newsletters
TWF Newsletter - July 08
TWF Newsletter - June 08
TWF Newsletter - Nov 07
Archived Newsletters
Forum Guides
Leaving iTrader Feedback
Reporting a Post
Competitions
Business Article Writing 08
Fantasy Football 2008/9
Resources
The Wholesale Directory
Top  |  Profile  |  Calendar  |  Archive  |  Advertise  |  Contact
Our Network: Wholesale Forums  |  Wholesale Products and Suppliers Directory  |  Wholesale Business Blog and Resources  
Skin Designed by: vBulletinSkinz.com
Powered by vBulletin® Version 3.7.4 | Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright © The Wholesale Forums 2004-2008, All Rights Reserved.