Spreading Percentage

Msgjazz

New Member
Joined
Oct 21, 2003
Messages
45
I have a evaluation form that I NEED help with. There are 4 Rating levels to choose, E, S, NI, and NA with a value of 3, 2, 1, and 0. Each Category (Blue row) has subtask (Green rows) with a percentage weight for each. In the example below, you can see in Column F that each weight is 25% for all 4 subtask. When I make the last task an NA (cell C13), then the other 3 subtask weight changes to 33.33%, If I change 2 to NA then the remaining changes to 50%. Easy as there are only 4 subtask and each are 25


Book1
ABCDEFGHIJKLMNO
1Rating CategoryActual RatingCumm. RatingScoreWeightWeight (0.0 to 1.0)PointsWeighted ScorePreserved Score
2II. Communication / Facilitating ChangeS2.0020.0%20.0%20.400.400
3ActionN/A Count0123
41. Recommends Innovative IdeasE333.3%25.0%1.0010.250.33330.51
5Action
6Evaluation Justification:
72. Seeks Personal Training Development OpportunitiesS233.3%25.0%0.67
8Action
9Evaluation Justification:
103. Written CommunicationNI133.3%25.0%0.33
11Action
12Evaluation Justification:
134. Verbal communication and information sharingNA00.0%25.0%0.00
14Action
15Evaluation Justification:100.0%100.0%
IT Bus Analyst


But on the following Category, there are 7 subtask with different weight (20%, 15%, and 10%). So on this one, if I make a subtask NA, then that weight needs to be distributed to the other 6 subtasks but keep the same ration.


Book1
ABCDEFGHIJKLMNOPQR
16III. Job Knowledge & PerformanceNI1.5025.0%25.0%10.250.375
17To demonstrate knowledge, understanding and proper application of information in the performance of job duties. Ability to efficiently manage time and resources.10123456
18SubTask 1NA00.0%20.0%0.0000.166670.20.250.333330.51
19Action
20Evaluation Justification:
21SubTask 2S215.0%15.0%0.30
22Evaluation Justification:
23SubTask 3NI115.0%15.0%0.15
24Action
25Evaluation Justification:
26SubTask 4E310.0%10.0%0.30
27Action
28Evaluation Justification:
29SubTask 5E310.0%10.0%0.30
30Action
31Evaluation Justification:
32SubTask 6NA00.0%15.0%0.00
33Action
34Evaluation Justification:
35SubTask 7E315.0%15.0%0.45
36Action
37Evaluation Justification:65.0%100.0%
IT Bus Analyst


So making subtask 1 an NA, then the other 6 task would need to be their original % (Column E) PLUS and additional 4%(20%/6) So 10% changes to 13.3 and 15% changes to 18.3. If I then also make Subtask 6 an NA, then the remaining 5 will get and additional 7% (35%/5 [20 and 15]). So whichever subtask is made an NA, the remaining task need to change appropriately.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi,

You can use this array formula (add with ctrl+shift+enter, Excel will add { } around it when done correctly)

First it sums up all the %for rows with have NA rating, then it divides the remainder by the number of non-NA ratings and adds this to the base

'scores' is your column of ratings and 'basew' is your column of base weight %s


ABC - scoreDE - actual weightF- base weight
subtask 1na=IF(C17="na",0,F17+(SUM(IF(scores="na",basew))/COUNTIF(scores,"<>na")))20%
subtask 2s0.2115%
subtask 3S0.2115%
subtask 4na010%
subtask 5s0.1610%
subtask 6s0.2115%
subtask 7s0.2115%

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top