+ Reply to Thread
Results 1 to 3 of 3

Formula to calculate a rate based on every 1,000 of payroll

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-27-2016
    Location
    Greenville,NC
    MS-Off Ver
    Excel 2013
    Posts
    124

    Formula to calculate a rate based on every 1,000 of payroll

    Hello,

    I am trying to factor in a column into the attached spreadsheet that will multiply an expense rate/$1,000 of wages. Here is what the table I am referencing looks like......

    Age Band Rate/$1,000

    Through 29 $.14

    30-39 $.18

    40-44 $.34

    45-49 $..50

    50-54 $.78

    55-59 $1.46

    60-64 $2.24

    65-69 $3.78

    70 and over $5.81

    I do not think I will necessarily worry about inputing their birthdates into a column. I'll look up their bdays and make a rate column out by there name. So, my questions are the following:

    1. Is there a way a formula can look up an employee with their corresponding rate, and know to multiply that rate by every $1,000 of wages earned (column H)?
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor
    Join Date
    01-03-2016
    Location
    Conwy, Wales
    MS-Off Ver
    2016
    Posts
    974

    Re: Formula to calculate a rate based on every 1,000 of payroll

    Use a combination of Index and Match.

    Create 2 named ranges
    Ages = the values from 0-70 as below (each age is the lower age qualifying for that rate)
    Rates = the values from 0.14-5.81 as below

    The formula you need is
    =INDEX(Rates,MATCH(B4,Ages,1),1)
    The match is LESS than (the 1 after "Ages" inside the bracket so that if an exact match is not fount Excel returns the lower rate)
    B4 is the cell containing the employees age


    AGES RATES
    0 0.14
    30 0.18
    40 0.34
    45 0.5
    50 0.78
    55 1.46
    60 2.24
    65 3.78
    70 5.81


    See sheet3 in your workbook (attached)

    And I would put in a column to calculate their ages immediately otherwise mistakes will occur

  3. #3
    Valued Forum Contributor
    Join Date
    04-26-2015
    Location
    Toronto, Canada
    MS-Off Ver
    2010
    Posts
    502

    Re: Formula to calculate a rate based on every 1,000 of payroll

    For Birthdays you could use this formula

    Example:

    If Cell B2 is 9/5/1983 place =DATEDIF(B2,$A$1,"Y") in C2. Where $A$1 is a fixed cell with =TODAY() in it.

+ 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. Formula to calculate pay rate based on years of service
    By abrice in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-30-2015, 10:46 PM
  2. [SOLVED] Need help writing formula to calculate monthly returns based on annual growth rate
    By bxk006 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 07-10-2014, 12:07 PM
  3. Replies: 1
    Last Post: 05-16-2014, 10:10 AM
  4. [SOLVED] Calculate total sum based on different rate
    By Roy Kean in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 12-12-2013, 04:10 AM
  5. Replies: 7
    Last Post: 11-16-2013, 04:17 PM
  6. payroll using tax rate formula
    By ee123 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-09-2013, 05:22 AM
  7. Payroll: Need help with a formula that can calculate 3 shift differentials and overtime.
    By DIGITALNICO in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-21-2012, 04:11 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