If A1:K1= yes then yes = 5%

bodew

New Member
Joined
Oct 27, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I want to make a team evaluation table. Once an employee meets a criterion and has a "yes" answer, then that answer should carry 5% towards the evaluation.
Example:
Cells A1:K1 contain different criterion
A1: Organizational skills
A2: Communication skills
A3: Teamwork skills

I want the answer :yes: in cell A2 under criterion A1- to carry 5% to the employee's evaluation

I would like the answer :yes: in box B2 under criterion B2- to contribute 10% to the employee's evaluation and so on.
Then, depending on the YES answers, the employee should receive a total score in cell L1, for example.

I tried that rule set but didn't get things right.

Thanks
Regards
 

Attachments

  • Screenshot 2023-10-27 221206.png
    Screenshot 2023-10-27 221206.png
    13.6 KB · Views: 13

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Maybe this to get you started, and you can add more columns/criteria to it with a new IF() statement for each new evaluation criteria.

Book1
ABCD
1Organizational SkillsCommunication SkillsTeamwork SkillsOverall Assessment
2YesYesNo15%
Sheet1
Cell Formulas
RangeFormula
D2D2=SUM(IF(A2="Yes",0.05,0),IF(B2="Yes",0.1,0),IF(C2="Yes",0.1,0))
 
Upvote 0
Try:
Book2
ABCDKL
1Organizational skillsCommunication skillsTeamwork skillsoverall assessment
2yesyesno15%
3yesyesyes30%
Sheet1
Cell Formulas
RangeFormula
L2:L3L2=SUM(IF($A2:$K2="yes",SEQUENCE(,COLUMNS($A$2:$K$2),5%,5%),0))
 
Upvote 0
You need to put the % in another row. Then it's easy. I put it in row 3. Also your description did not match your screenshot, so I went with the screenshot.

$scratch.xlsm
ABCD
1Organizational SkillsCommunication SkillsTeamwork SkillsOverall Assessment
2yesyesno
35%10%10%15%
Skills
Cell Formulas
RangeFormula
D3D3=SUMPRODUCT(--($A$2:$C$2="yes"),$A$3:$C$3)
 
Upvote 0
Thank you very much, guys.
You just have no idea how much you have helped me.
Once again, a huge thank you.

* Sorry for my bad English
 
Upvote 0

Forum statistics

Threads
1,215,327
Messages
6,124,289
Members
449,149
Latest member
mwdbActuary

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