+ Reply to Thread
Results 1 to 3 of 3

Calculating 401k Company Match up to 6%

  1. #1
    Registered User
    Join Date
    01-15-2008
    Posts
    2

    Calculating 401k Company Match up to 6%

    Ok all, I am a noob to this site! I have a problem and was wondering if any of you Excel masters can help out. I have a spreadsheet and I need to calculate the 401k the company matches up to 6%. Here is an example:

    If yearly salary = $50,000 and I vest 8% of my salary then I have vested $4,000 into my 401k. The company will match up to but not more than 6% of what my 401k percentage therefore in this example they will match 6% of $50k = $3,000

    So if I have 4 columns:

    A = Yearly Salary
    B = My 401k vestment
    C = Employer 401k match (up to but not more than 6%)
    D = 401k Percent vesting

    How would the equation be formulated for cell "C"?

    Thanks for any help.

    Sincerely, T

  2. #2
    Registered User
    Join Date
    01-15-2008
    Posts
    2
    Ok all,

    This is what I came up with. Check this to see if this is written efficent enough:

    =IF(D2<=0.06,A2*D2,IF(D2>0.06,A2*0.06))

    ...of course the first row has the header information:
    A1 = "Total Compensation"
    B1 = "Employee 401k Vestment"
    C1 = "Employer Match"
    D1 = "Actual %"

    ...it seems to work

    ...more input is welcome!

  3. #3
    Registered User
    Join Date
    01-15-2008
    Posts
    16
    This may work. The parentheses may not be in the right place. I'm on a computer without Excel right now but you can use the insert function and enter the equations. This says that if your total investment is greater than 6% then the company will match the total 6%. Otherwise, they will match whatever you invest under the 6% of your total investment.

    IF (B1> (.06*A1),(.06*A1),B1)

+ 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