Excel Duplicate Check

cjpascoe1

New Member
Joined
Nov 30, 2017
Messages
18
I have a list of Companies & Contacts with a column labeled 'Called this year'

I'm looking to find a formula that will include All contacts at the same company if one contact at the company has been called

Example, Geico, Called Tanya, but not Francene, in this case I would put another column with a yes on both contacts

CompanyContactCalled this Year?
AflacJohn SmithYes
GeicoFrancene Frederick
GeicoTanya WaylonYes
Liberty MutualRoyle Jayden
Liberty MutualHeath Diana
NationwideLucy ArlieYes
NationwideChristobel EmilyYes
ProgressiveStew Aubrie
ProgressiveLambert MadisynYes
State FarmMichelle Pierce
State FarmKizzy EdwynaYes
State FarmCaden Holly
USAATodd ShirleeYes
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
if any company has a YES, than mark as yes for all the company entries

=IF(COUNTIFS($A$2:$A$14,A2,$C$2:$C$14,"yes")>0,"yes","no")

unless i misunderstood

Book3
ABCD
1CompanyContactCalled this Year?Company Called
2AflacJohn SmithYesyes
3GeicoFrancene Frederickyes
4GeicoTanya WaylonYesyes
5Liberty MutualRoyle Jaydenno
6Liberty MutualHeath Dianano
7NationwideLucy ArlieYesyes
8NationwideChristobel EmilyYesyes
9ProgressiveStew Aubrieyes
10ProgressiveLambert MadisynYesyes
11State FarmMichelle Pierceyes
12State FarmKizzy EdwynaYesyes
13State FarmCaden Hollyyes
14USAATodd ShirleeYesyes
Sheet1
Cell Formulas
RangeFormula
D2:D14D2=IF(COUNTIFS($A$2:$A$14,A2,$C$2:$C$14,"yes")>0,"yes","no")
 
Upvote 0

Forum statistics

Threads
1,215,022
Messages
6,122,726
Members
449,093
Latest member
Mnur

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