Qualification check

HarryLime

New Member
Joined
Sep 4, 2020
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
I have a table of students who have been on two courses at our facility. For the purposes of what I am doing both courses need to be on the same tab.

Both courses need to be passed for the student to complete the qualification. The student can fail and retry the course.

What I am trying to do is show when the student has passed both courses. In the example below Jones has passed both course types at the first attempt and is given the qualification. Bloggs fails one course type but passes at the second attempt and gains the qualification.

The table below is a simplistic version of what I am using. There can be up to 90 students per course. A student who failed a course may not return until two iterations of the course has been run.

Any idea how I can automate this?


Course TypeID numberNameCourse ResultQual Gained
1​
1234​
JonesPass
1​
3456​
BloggsFail
2​
1234​
JonesPassYes
2​
3456​
BloggsPass
1​
3456​
BloggsPassYes
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
you could try
=IF(COUNTIFS($B$2:B2,B2,$D$2:D2,"pass")=2,"YES","NO")
and copy down,
This assumes the course number does not matter, and its just a case of having the name with 2 pass
 
Upvote 0

Forum statistics

Threads
1,214,909
Messages
6,122,189
Members
449,072
Latest member
DW Draft

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