Highlight more than once taken online course in any given day in excel
Question: My scenario is tracking employees who complete online training. I capture their name, id, class taken, and date. Any employee is free to take a plethora of different courses and they could take them all on the same day if they want. What I am trying to do is see if any employee has taken any course more than once in any given day?
Answer:
Conditional formatting formula:
=SUM(COUNTIF($A2, $A$2:$A$35)*COUNTIF($B2, $B$2:$B$35)*COUNTIF($C2, $C$2:$C$35))>1
Download excel sample file for this tutorial.
Highlight duplicate online classes using conditional formatting
(Excel 97-2003 Workbook *.xls)
Functions in this article:
COUNTIF(range,criteria)
Counts the number of cells within a range that meet the given condition
SUM(number1,[number2],)
Adds all the numbers in a range of cells
Related blog posts
- Highlight smallest duplicate value in a column using conditional formatting in excel
- Highlight duplicates using conditional formatting in excel
- Highlight duplicates where adjacent cell value meets criteria using conditional formatting in excel part 2
- Highlight common values in two lists using conditional formatting in excel
- Highlight duplicate values in a range using conditional formatting in excel







Leave a Reply