Excel 2007 - Need help with a formula

johnfn

New Member
Joined
Aug 28, 2011
Messages
8
Hello,

I need some kind of formula that can do the following:

If the exact value of a cell in column C is found anywhere in column A, then the word "duplicate" needs to be added in column B next to that column A cell.

A summary of my problem is basically I have 800 cells of content in column C that is also within 2400 cells of column A. I need to remove the 800 cells of duplicates from column A.

Thanks in advance.

John
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hello,

I need some kind of formula that can do the following:

If the exact value of a cell in column C is found anywhere in column A, then the word "duplicate" needs to be added in column B next to that column A cell.

A summary of my problem is basically I have 800 cells of content in column C that is also within 2400 cells of column A. I need to remove the 800 cells of duplicates from column A.

Thanks in advance.

John
Enter this formula in column B and copy down as needed.

=ISNUMBER(MATCH(A1,C:C,0))

Duplicates will be marked with TRUE
 
Upvote 0
So far none of these have worked. The content in each of the cells of columns A and C are a paragraph or two of content, if this matters. Could this be why the formulas aren't working?
 
Upvote 0
Hi Johnfn,

Try this in B1

=IF(ISERROR(VLOOKUP(A1,$C:$C,1,0))=TRUE,"","Duplicate")

Hope this will work.

Shweta
 
Last edited:
Upvote 0
Everything (or most of everything) in column C should be found somewhere in column A. I am using Excel, I just uploaded it to G-docs for others to see what I'm trying to figure out how to do. I'll download Excel Jeanie and try to post some rows in a few.
 
Upvote 0
Actually the problem I see with trying to add a few lines is that the chances of a duplicate from column C being found in column A is slim since there are 800 cells in column C that are found randomly within 2000+ cells of column A. I don't see how I can post an example.
 
Upvote 0

Forum statistics

Threads
1,224,607
Messages
6,179,871
Members
452,948
Latest member
UsmanAli786

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