Srishti Malhotra
Srishti Malhotra

Reputation: 1

excel function to find 1 student in more than 1 course

I am working on a file that has students and the courses in which they have enrolled. I have to find if they have enrolled in more than 1 course. which formula will be suitable in excel?

Upvotes: 0

Views: 137

Answers (1)

Dominique
Dominique

Reputation: 17555

I'm using following formula (using the helper column "Both together"):

=COUNTIF(C$2:C6, C6)

Where my data look as follows:

enter image description here

The column "Both together" consists of the following formula:

=A2 & "|" & B2

Upvotes: 1

Related Questions