Closed Thread
Results 1 to 16 of 16

Formula to minus VAT at 20%

  1. #1
    Registered User
    Join Date
    11-06-2012
    Location
    Wick, Wales
    MS-Off Ver
    Excel 2007
    Posts
    4

    Formula to minus VAT at 20%

    Dear all,

    OK, at the risk of sounding stupid... I am trying to create a balance sheet for my weekly accounts. I would like a column to contain a formula that minus' the 20% VAT and shows the end amount e.g if in A1 I have £100.00 of sales I would like Column A2 to show the amount minus the VAT i.e £80.00

    I have looked for the answer on hear as I don't want to be the one repeating others! But all I have managed to find so far is the formula for VAT at 17.5% which I believe to be e.g. A1*7/47??

    Any help would be appreciated and thank you in advance

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Formula to minus VAT at 20%

    Try =A1*(1-20%)

  3. #3
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,463

    Re: Formula to minus VAT at 20%

    If you have £100 in cell A1 (gross), the net value is not £80. If you start with £80 and apply 20%, you'd get £16, so the gross value would be £96. You need to divide by 120, as the gross value is 120%, and then multiply by 100. So the net value would be £83.33, and the VAT would be £16.67


    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  4. #4
    Registered User
    Join Date
    11-06-2012
    Location
    Wick, Wales
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Formula to minus VAT at 20%

    Thanks TMS I think I see what you're saying. So what would be the formula for that?

  5. #5
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Formula to minus VAT at 20%

    Try =A1/(1+20%)

  6. #6
    Registered User
    Join Date
    11-06-2012
    Location
    Wick, Wales
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Formula to minus VAT at 20%

    Ok, That seems to work for what has been advised.
    At the risk of sounding like I'm banging on about it, I was told that A1*7/47 was the formula to calculate VAT at 17.5% by a friend who used to do a similar thing, and I assumed that the formula for VAT at 20% would be of a similar set up?

    Apologies, I'm just trying to understand what I'm doing here.

  7. #7
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,238

    Re: Formula to minus VAT at 20%

    =A1*1/6 gives you the VAT @ 20%

    Though personally I prefer:
    =A1/1.2
    And
    =A1-(A1/1.2)
    Last edited by Kyle123; 11-06-2012 at 10:32 AM.

  8. #8
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,602

    Re: Formula to minus VAT at 20%

    1000/(1+20%) = 833,33
    so VAT is: 1000-833,33 = 166,67

    In previous example, you've used 17,5%.
    1000/(1+17,5%) = 851,06
    so VAT is: 1000-851,06 = 148,94

    Solution you've found will result with:
    1000*7/47 = 148,94 but above solution is more easier to adopt for future changes because you just change 20% into other number, while 7/47 is specific and you would need to calculate fraction for each VAT.

    As Kyle told you you can use A1/1.2 but I write intentionally in this form so you can easily change values.

  9. #9
    Registered User
    Join Date
    11-06-2012
    Location
    Wick, Wales
    MS-Off Ver
    Excel 2007
    Posts
    4

    Re: Formula to minus VAT at 20%

    But I am not trying to add VAT. for example if I make £100 worth of sales I need to pay 20% of that as VAT. Which is £20.
    So in Column A I have food sales, B Wet sales, C total cash, D total EFT then E total take. So if the total take is £350.00 then 20% of that I need to pay as VAT. So I need Column F to show what amount is 20% of the total take and then Column G is the take after VAT is paid by me.

    Again, I apologise if I am over complicating this

  10. #10
    Forum Expert Kevin UK's Avatar
    Join Date
    12-07-2010
    Location
    Radstock, Somerset
    MS-Off Ver
    365
    Posts
    1,922

    Re: Formula to minus VAT at 20%

    Hi EmStar

    Use =ROUND((Gross*VAT)/(1+VAT),2)

    Put your VAT in a separate cell that you can reference in your formula. Just in case the VAT man changes it.

  11. #11
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    44,463

    Re: Formula to minus VAT at 20%

    Put your VAT in a separate cell that you can reference in your formula. Just in case the VAT man changes it.
    But just be aware that if you do that, the VAT man changes the rate, and you change the cell, it will affect all previous calculations.

    Thanks for the rep.

    Regards, TMS

  12. #12
    Registered User
    Join Date
    02-07-2023
    Location
    United States
    MS-Off Ver
    0.8
    Posts
    18

    Re: Formula to minus VAT at 20%

    Quote Originally Posted by EmStar View Post
    Dear all,

    OK, at the risk of sounding stupid... I am trying to create a balance sheet for my weekly accounts https://southafricanvatcalculator.co.za. I would like a column to contain a formula that minus' the 20% VAT and shows the end amount e.g if in A1 I have £100.00 of sales I would like Column A2 to show the amount minus the VAT i.e £80.00

    I have looked for the answer on hear as I don't want to be the one repeating others! But all I have managed to find so far is the formula for VAT at 17.5% which I believe to be e.g. A1*7/47??

    Any help would be appreciated and thank you in advance
    Hi, I'm trying to calculate the VAT Value and Net Value from Gross Value and VAT Rate in a query, however I cannot work out how to do this. I have a query which is going to update and transfer a table from MS Access 2007 to MS Access 2016 once I have worked out the VAT and Net Totals. I have the fields [Gross] and [TaxRate], however I need to work out [VAT] and [Net], I currently use 0% VAT, 5% VAT and 20% VAT in the table\query. Gross would be say 100.00, TaxRate value is 20 (for 20% vat), so i need it to return VAT of £16.67 and Net of £83.33 - for 20% VAT Gross would be say 100.00, TaxRate value is 5 (for 5% vat), so i need it to return VAT of £4.76 and Net of £95.24 - for 5% VAT
    Last edited by bojef; 09-15-2023 at 07:30 PM.

  13. #13
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,931

    Re: Formula to minus VAT at 20%

    @ bojef

    Administrative Note:

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #1 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  14. #14
    Registered User
    Join Date
    02-07-2023
    Location
    United States
    MS-Off Ver
    0.8
    Posts
    18

    Re: Formula to minus VAT at 20%

    Quote Originally Posted by EmStar View Post
    Dear all,

    OK, at the risk of sounding stupid... I am trying to create a balance sheet for my weekly accounts. I would like a column to contain a formula that minus' the 20% VAT and shows the end amount e.g if in A1 I have £100.00 of sales I would like Column A2 to show the amount minus the VAT i.e £80.00

    I have looked for the answer on hear as I don't want to be the one repeating others! But all I have managed to find so far is the formula for VAT at 17.5% which I believe to be e.g. A1*7/47??

    Any help would be appreciated and thank you in advance
    You're on the right track! To subtract 20% VAT from a value in cell A1, you can use the following formula in cell A2:

    =A1 - (A1 * 20%)

    Or, in Excel, you can use the formula with the cell references:

    =A1 - (A1 * 0.20)

    This will give you the amount minus the 20% VAT in cell A2. In your example, if A1 contains £100.00 of sales, cell A2 would display £80.00, which is the amount after subtracting the VAT.

  15. #15
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,238

    Re: Formula to minus VAT at 20%

    That isn’t how VAT works, it’s added onto a value, so 100 less vat is 83.33

  16. #16
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,063

    Re: Formula to minus VAT at 20%

    Bojeff. You were told to open a new thread. This thread is now closed.
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU.

    Temporary addition of accented to illustrate ongoing problem to the TT: L? fh?ile P?draig sona dhaoibh

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1