Forum Discussion

gert612's avatar
gert612
Copper Contributor
Apr 15, 2025
Solved

Calculating percentage increases using a scoring system and a set budget amount

I need to be able to calculate a wage increase on individuals.  For each person, I have their score from 7-15 (note that multiple people can have the same score), their current annual rate, and the total budget by department.  The number of employees in each department will vary, so I can’t use any kind of set number for any kind of formula.  It has to be able to determine how many are in the department.

 

I need to be able to calculate what percentage of increase each person should get so that the higher ranked employees get a higher percentage and the ones below that get spread out equitably by their score, but where the sum of their increases uses up the budget amount, but doesn’t go over.

 

I can’t seem to wrap my head around what this formula needs to be.  

Sample of data:

EE NameScore Current salary Total budget amount350,000
Employee 17        52,998.40  
Employee 27        55,993.60  
Employee 37        52,000.00  
Employee 47        55,993.60  
Employee 57        52,998.40  
Employee 67        56,000.05  
Employee 77        48,048.00  
Employee 87        54,995.20  
Employee 97        43,680.00  
Employee 107        43,680.00  
Employee 117        44,990.40  
Employee 127        57,990.40  
Employee 137        43,680.00  
Employee 147        51,001.60  
Employee 157        55,993.60  
Employee 167        55,993.60  
  • maybe something like:

    = [range of scores]/sum( [range of scores] ) * [Budget Amount]

    so if the scores are in B2:B20 and the budget is E1 then

    = B2:B20 / sum(B2:B20) * E1

5 Replies

  • m_tarler's avatar
    m_tarler
    Bronze Contributor

    maybe something like:

    = [range of scores]/sum( [range of scores] ) * [Budget Amount]

    so if the scores are in B2:B20 and the budget is E1 then

    = B2:B20 / sum(B2:B20) * E1

    • gert612's avatar
      gert612
      Copper Contributor

      Thank you!

       

      I bumped the total budget up to 350k, but the results in column G only increased to the 51,252.80 that was initially in column E.  Do I need to change something else in conjunction with that?

Resources