markarivard

New Member
Joined
Oct 4, 2011
Messages
2
I have a worksheet that is used to log phone calls. We can get several calls from the same person and I would like to identify the dup call. I am doing this with this statement:

=IF(COUNTIF(C$2:C$1000,C2)>1,"DUP","")

This works well to identify the duplicate callers. My challenge is that we also track closed calls with an "x" in column "N" titled "Closed". I would like the formula to ignore the closed calls and only alert me of duplate callers that are still open.

I have been looking at AND and OR statements but have yet to get a formula to work as desired.

Any help would be welcome.

Mark Rivard
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Make column O a concatenation of columns C & N.

Then use

=IF(COUNTIF(O$2:O$1000,C2)>1,"DUP","")
 
Upvote 0

Forum statistics

Threads
1,215,432
Messages
6,124,858
Members
449,194
Latest member
HellScout

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