Checking for duplicates by matching 3 separate criteria

iansberg

New Member
Joined
Jun 12, 2015
Messages
2
I have a column (A) of dates from 2007-2014 (m/d/yr). I have another column (B) of analytes that are tested. My last column (C) is a grouping of three categories, lets say categories 1,2,3. So for each date a set of analytes are tested amongst 3 categories. I cant figure out a formula that looks at a specific analyte name (str) to see if it occurs more than once in a given date for each category.

The question really is "Does my analyte of the category (1,2 or 3) appear more than once on the day it was tested(column A range).

Make sense???
.

Date Parameter Group
11/1/2011 LAGOON_1_LEVEL 1
11/1/2011 LAGOON_2_LEVEL 1
11/1/2011 LAGOON_3_LEVEL 1
11/1/2011 FLOW_METER_NUM 1
11/1/2011 FOG_LAB 1
11/1/2011 BOD_LAB_MG_L 1
11/1/2011 BOD_HMI_LB_READING 1
11/1/2011 TOC_LAB 1
11/1/2011 TOC_METER_READ 1
11/1/2011 Total_Suspended_Solids 1
11/1/2011 pH_HIGH 1
11/1/2011 pH_LOW 1_Meter_Calc 1



Thanks!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Try a countifs formula in column D

Something like this: =COUNTIFS($A$2:$A$13,A2,$B$2:$B$13,B2,$C$2:$C$13,C2)

If the same date, analyte and group is encountered more than once, the value of the formula is > 1 (basically the count of how many times it is duplicated)

If you don't want the name of the analyte checked, then just remove it from the formula.
IOW, it will only check date and group: =COUNTIFS($A$2:$A$13,A2,$C$2:$C$13,C2)
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,779
Members
449,049
Latest member
greyangel23

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