Formula for Appraisal form using checkboxes

cathy2007

New Member
Joined
Sep 14, 2007
Messages
24
Hi There,

I'm putting together a performance appraisal form with checkboxes. Picture tasks down the vertical, and checkboxes across the horizontal in a chart format. There are 7 rows (tasks), and 5 columns (rating points from 1-5). My grid looks like 35 checkboxes, with only one possible check in each row. I've linked the checkboxes to the adjacent cells so I have a TRUE/FALSE grid next to my checkbox grid.

I want to have the "overall" row at bottom automatically populate based on the boxes checked for "tasks" 1-7. What is the formula I need in the 5 boxes at the bottom 'overall' row if I want the following results; any check in column C gets 5 pts, in column D gets 4 pts, etc. and the key is:

5 overall = total of 32 to 35 pts
4 overall = total of 25 to 31 pts
3 overall = total of 18 to 24 pts
2 overall = total of 11 to 17 pts
1 overall = total of 1 to 10 pts

Thanks so much!!

Cathy
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Is this what you want? there would be check boxes in B2:F8.

ABCDEFGHIJK
1task12345
2task1FALSETRUEFALSEFALSEFALSE
3task2FALSETRUEFALSEFALSEFALSE
4task3TRUEFALSEFALSEFALSEFALSE
5task4TRUEFALSEFALSEFALSEFALSE
6task5TRUEFALSEFALSEFALSEFALSE
7task6TRUEFALSEFALSEFALSEFALSE
8task7FALSETRUEFALSEFALSEFALSE
9
10
11overall5

<tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
B11=VLOOKUP(COUNTIF(G2:G8,TRUE)*5+COUNTIF(H2:H8,TRUE)*4+COUNTIF(I2:I8,TRUE)*3+COUNTIF(J2:J8,TRUE)*2+COUNTIF(K2:K8,TRUE)*1,{1,1;11,2;18,3;25,4;32,5},2)

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,847
Members
449,194
Latest member
HellScout

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