+ Reply to Thread
Results 1 to 24 of 24

Cpp Ei Fed and ON stub

  1. #1
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Cpp Ei Fed and ON stub

    Hi

    I need a formula which works as below criteria. I need biweekly pay period CPP deduction

    Year's Maximum Pensionable Gross Earnings - $47,200.00
    Biweekly Basic Exemption - $3,500.00/26 = 134.62
    Contribution Rate (employee) - 4.95%
    Annual Maximum Contribution (employee) - $2,163.15


    Pls see attached file.

    Thanks
    Attached Files Attached Files
    Last edited by top1; 02-25-2011 at 07:52 AM.

  2. #2
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: CPP deduction

    CPP? what is CPP?
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  3. #3
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Quote Originally Posted by martindwilson View Post
    CPP? what is CPP?
    Canadian Pension Plan.

  4. #4
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    I believe you want:

    In E2:
    =ROUND((D2-ROUND(3500/26,2))*0.0495,2)

    In F2
    =E2

    In F3
    =MIN(2163.15,F2+E3)

  5. #5
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    The formula for E2 will give you a result of $37.66

    That amount is verified by using the CRA Online Payroll Calculator
    https://apps.cra-arc.gc.ca/ebci/rhpd...o?lang=English

  6. #6
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Quote Originally Posted by Cutter View Post
    I believe you want:

    In E2:
    =ROUND((D2-ROUND(3500/26,2))*0.0495,2)

    In F2
    =E2

    In F3
    =MIN(2163.15,F2+E3)
    Thanks Cutter. It solved my one problem.

    Now Please If you can help me to determine Employee E.I and Employer E.I. and Ontario and Federal TAX for payroll. that would be great.

    Employee E.I
    * Maximum Annual Insurable Earnings - $42,300.00
    * Premium/Contribution Rate (employee) - 1.73%
    * Annual Maximum Premium (employee) EI - $747.36
    Employer contribution rate - 2.492%
    Annual Employer maximum - 1101.46

    Provincial and Federal tax rate can be found on this website:
    http://www.cra-arc.gc.ca/tx/ndvdls/fq/txrts-eng.html

    Thanks

  7. #7
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    What year are you interested in?
    Your original post gives figures for 2010 CPP.
    Your latest request gives 2010 EI numbers BUT the max for 2010 was 43,200 not 42,300
    The link you give for tax rates is for 2011.

    The calculations for Fed and Prov taxes is a lot more complex than just having the tax rates. There are a lot of factors that come into play and I can tell you that when I did those formulas for a file I created a few years ago they turned out to be the longest I have ever written. The basis for the formulas was from this site

    http://www.cra-arc.gc.ca/E/pub/tg/t4127-jan/README.html

    From Page 23 on in the PDF

  8. #8
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Hi Cutter
    I need this for 2011. If you can help me to determine EI and TAX it would be great help for me.

    Also I tried you suggested formula for CPP. It really work well. But How the CPP deduction stop to count in CPP column( Not YTD column) when it reach the maximum limit. I need that when CPP max reach, the cell appears Zero. Pls let me know any suggestion.

    Thanks
    Last edited by top1; 02-06-2011 at 03:14 PM.

  9. #9
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    Based on the gross pays listed in your sample you won't have to be concerned with the maximums but to account for them anyway do this:

    Change the formula in E3 to:

    =MIN(ROUND((D3-ROUND(3500/26,2))*0.0495,2),2217.6-F2)

    and in F3 to:

    =F2+E3

    and drag them down

    For EI in G2 put this: =ROUND(D2*0.0178,2)

    In G3 this: =MIN(ROUND(D3*0.0178,2),786.76-H2) and drag down

    In H2 this: =G2

    In H3 this: =H2+G3

    As for the Fed/Prov taxes I'll refer you to my previous post regarding that. Go to the linked PDF and follow the formulas as detailed from page 23 onward.

  10. #10
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Hi cutter, I went through your suggested site. I am not getting anything about how to tax deduct provincial and federal. Pls help me. Thanks

  11. #11
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    Here is what I have done so far. I assumed you did the Minimum Claim Code (Form TD1) and that you have NO extra deductions on your pay (RRSP, Pension, Union Dues, Alimony).

    I have not done the Provincial Tax. It is more complex thanks to Mr McGuinty and his OHIP premiums. If I get time I'll come back to it but you should make an effort on your own based on what I did for the Fed Tax.

    The tax results from the formula I have used produce the same results as the CRA online calculator (which I provided a link for in an earlier post).
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Hi Cutter,
    Thanks for help me out. I will try myself to figure out Province tax. But your work is beyond my mind intelligence. Anyway If I am able to figure (IF I COULD) out the last problem, I will inform u.

  13. #13
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Hi cutter,

    I tried to figure out the provincial tax for last 2 days, not getting any success.

  14. #14
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    Sorry to hear that you have had no success with the Ontario tax.

    I had a look at the formula that I used for my own file a couple of years ago and it occupies 19 1/2 lines in the formula bar. Like I said earlier - the longest formula I have ever written.

    Before I spend any more time on this I need to know if the online calculator (for which I've already provided the link) gives you the expected result when using just the basic information (no extra deductions, minimum claim codes).

    And I assume you are using this just to verify figures provided on your pay stub - is that correct?

  15. #15
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Yes I want to verify my paystub.
    Last edited by shg; 02-14-2011 at 10:20 AM. Reason: deleted spurious quote

  16. #16
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    That answers the second question I asked - and the online calculator accomplishes that.

    The first question I asked was: Does the online calculator, without inputting any additional deductions AND using minimum claim codes, produce the same results as your pay stub? If so, I can test the formula against its results. If not, your employer's method of calculation may be incorrect (or may use another method) in which case this exercise would be a waste of time.

  17. #17
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Hi Cutter:

    Yes, the online calculator gives me the same amount as of on my pay stub.

  18. #18
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    Hi Cutter,

    Are u getting any success for provincial tax?

  19. #19
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: CPP deduction

    I need some help in determine the provincial tax for Ontario Canada. If any one can help me out there.

  20. #20
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    I put this on the back burner for a couple of reasons - the main one being that your request is a 'want', not a 'need' and the online calculator fulfills that 'want' in the interim.

    I will try to give it some time this weekend - possibly during the Daytona 500.

  21. #21
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: CPP deduction

    Here you go. I have broken the Ont Tax down into 3 separate cells. The T4 value, the OHIP value and the T2 value (which is the one you see on your pay stub). This simplifies the overall calculation a great deal. To further simplify it I have omitted factors that you are unlikely to need giving consideration to (but I have placed zeros in the formula just to let you know that other factors could come into play and show you where they would go).

    The T4 and OHIP columns can be hidden if you want so that you only see numbers that would appear on your pay stub (but it's interesting to see the OHIP non-tax tax!).

    Of the 3 pays in your sample file the first and 3rd are to the penny as per the online CRA calculator. The 2nd one is off by 1 cent.

    Next year you will have to adjust the numbers highlighted in blue on the Fed and Ont sheets when they become available.

    Finally, you should change the title of this thread to "Formulas for Ontario payroll deductions" to aid someone who may do a search for same.
    Attached Files Attached Files

  22. #22
    Registered User
    Join Date
    12-07-2009
    Location
    Heaven
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    69

    Re: Cpp Ei Fed and ON pay stub

    THANKS CUTTER. Ur genious.

  23. #23
    Registered User
    Join Date
    01-17-2013
    Location
    Canada
    MS-Off Ver
    Excel 2003
    Posts
    2

    Cool Re: Cpp Ei Fed and ON stub

    New.xlsx
    O.K
    I have looked at this and cannot get the provincial tax to work properly. I have attached the same document with a few minor adjustments. I added the 2013tax year changes as you indicated in the "blue" fields. Rate of pay is 30./hr. Everything works flawlessly but that darn Provincial code will not work with a 52 week schedule instead of 26 weeks.
    Can you PLLLEEAAASSSEEE help? Thank you in advance!!!
    Letzgowild

  24. #24
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Cpp Ei Fed and ON stub

    Welcome to the Forum, unfortunately:

    Your post does not comply with Rule 2 of our Forum RULES. Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other thread. It makes sense to have a new thread for your question because a thread with numerous replies can be off putting & difficult to pick out relevant replies.

+ Reply to 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