+ Reply to Thread
Results 1 to 3 of 3

I need a formula to help me calculate years of vesting for 401K.

  1. #1
    Diana
    Guest

    I need a formula to help me calculate years of vesting for 401K.

    I need a formula that will help me calculate years of vesting for our 401k
    plan.
    2 years equals 20% vested
    3 years equals 40% vested
    4 years equals 60% vested
    5 years equals 80% vested
    6 years and over = 100% vested

  2. #2
    Peo Sjoblom
    Guest

    RE: I need a formula to help me calculate years of vesting for 401K.

    One way, with the years in A1


    =IF(A1="","",LOOKUP(A1,{0;2;3;4;5;6},{0;0.2;0.4;0.6;0.8;1}))


    format result as percentage



    Regards,


    Peo Sjoblom

    "Diana" wrote:

    > I need a formula that will help me calculate years of vesting for our 401k
    > plan.
    > 2 years equals 20% vested
    > 3 years equals 40% vested
    > 4 years equals 60% vested
    > 5 years equals 80% vested
    > 6 years and over = 100% vested


  3. #3
    Toppers
    Guest

    RE: I need a formula to help me calculate years of vesting for 401

    With years in A1 (assumes there is an entry):

    =IF(A1>=6,1,(A1-1)*0.2)

    with result formatted as percentage

    "Peo Sjoblom" wrote:

    > One way, with the years in A1
    >
    >
    > =IF(A1="","",LOOKUP(A1,{0;2;3;4;5;6},{0;0.2;0.4;0.6;0.8;1}))
    >
    >
    > format result as percentage
    >
    >
    >
    > Regards,
    >
    >
    > Peo Sjoblom
    >
    > "Diana" wrote:
    >
    > > I need a formula that will help me calculate years of vesting for our 401k
    > > plan.
    > > 2 years equals 20% vested
    > > 3 years equals 40% vested
    > > 4 years equals 60% vested
    > > 5 years equals 80% vested
    > > 6 years and over = 100% vested


+ 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