+ Reply to Thread
Results 1 to 4 of 4

Excel 2013 formula to calculate salary increase based on service years and percentage

  1. #1
    Registered User
    Join Date
    10-16-2013
    Location
    USA
    MS-Off Ver
    2013
    Posts
    4

    Excel 2013 formula to calculate salary increase based on service years and percentage

    Hi,
    I have a spreadsheet that has all employees with their Service Date (column AA), Salaries are in P, Current Date in AD2.

    Every 5 years of employment staff receive an increase (1% for 5 years, 1.5% for 10, 2% for 15 & 2.5% for 20 & over).

    In AI I am using =DATEDIF(AA6,$AD$2,"y") to determine the Service Years, AJ I am using =MOD(AI6,5)=0 to determine if AI is evenly divisible by 5 (True or False). I am now looking for a formula that will calculate the % increase based on 5, 10, 15, or 20+ years.

    Thank you so much,

    lisakay

  2. #2
    Registered User
    Join Date
    08-25-2013
    Location
    california
    MS-Off Ver
    Excel 2010
    Posts
    10

    Re: Excel 2013 formula to calculate salary increase based on service years and percentage

    If the # of years of service is in AI6, try using this formula to calculate the %

    =IF(AI6>=20,0.25,IF(AI6>=15,0.2, IF(AI6>=10,0.15,IF(AI6>=5,0.1,0))))

  3. #3
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996

    Re: Excel 2013 formula to calculate salary increase based on service years and percentage

    Maybe this?
    =IF(AJ6,LOOKUP(FLOOR(AI6,5)/5,{1,2,3,4},{0.01,0.015,0.02,0.025}),0)

    Does that help?
    Ron
    Former Microsoft MVP - Excel (2006 - 2015)
    Click here to see the Forum Rules

  4. #4
    Registered User
    Join Date
    10-16-2013
    Location
    USA
    MS-Off Ver
    2013
    Posts
    4

    Re: Excel 2013 formula to calculate salary increase based on service years and percentage

    Thank you both. I ended up using Ron's formula as it also gave me an #N/A for 0 years of service. Also Coolfundaz' needs to be adjusted for the correct percentage, which I did, but gave me 2.5% for 0 years of service.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Need a vba code to check the status and based on rules calculate service years
    By baba_excel in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 12-19-2012, 09:03 PM
  2. [SOLVED] Formula to calculate years of service for next year
    By Kimston in forum Excel General
    Replies: 9
    Last Post: 12-13-2012, 06:40 PM
  3. Help! Need to calculate bonuses based on years and salary.....
    By larasmomma in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 11-26-2012, 05:57 PM
  4. Calculate year over revenue percentage based on daynamic years
    By karinos57 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 08-17-2009, 02:22 PM
  5. calculate years worked by 3% * salary in excel
    By laurentium3 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-17-2006, 08:45 PM

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