A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

remove all duplicates?



 
 
Thread Tools Display Modes
  #1  
Old June 2nd, 2010, 09:05 AM posted to microsoft.public.excel.misc
Snow
external usenet poster
 
Posts: 9
Default remove all duplicates?

Hey.

I have office 2003. Was wondering how do you remove all duplicates?

I have a column with the names of the employees, and another column with the
names of those who have participated in a course. How/ what formula shall I
use to find out who haven’t participated in that course?

I appreciate your help

Regards Svetlana Wik

  #2  
Old June 2nd, 2010, 09:28 AM posted to microsoft.public.excel.misc
Bob Phillips[_3_]
external usenet poster
 
Posts: 489
Default remove all duplicates?

You could use Advanced filter which has a Unique Values option, or if it is
more complex then Dave Brett has an addin for doing this

http://www.experts-exchange.com/arti...Master-V2.html

--

HTH

Bob

"snow" wrote in message
...
Hey.

I have office 2003. Was wondering how do you remove all duplicates?

I have a column with the names of the employees, and another column with
the
names of those who have participated in a course. How/ what formula shall
I
use to find out who haven't participated in that course?

I appreciate your help

Regards Svetlana Wik



  #3  
Old June 2nd, 2010, 09:53 AM posted to microsoft.public.excel.misc
Jacob Skaria
external usenet poster
 
Posts: 5,952
Default remove all duplicates?

--To remove duplicates check out the option from menu DataFilterAdvanced
FilterCopy to another location... Check 'Unique records only' (make sure
your data has got headers)

--If you have the employee names in ColA and ColD and aganist each ColA
entry you want to check whether they have participated in the course apply
this formula in ColB and copy down

=IF(COUNTIF(D,A1),"Participated","")

--
Jacob (MVP - Excel)


"snow" wrote:

Hey.

I have office 2003. Was wondering how do you remove all duplicates?

I have a column with the names of the employees, and another column with the
names of those who have participated in a course. How/ what formula shall I
use to find out who haven’t participated in that course?

I appreciate your help

Regards Svetlana Wik

  #4  
Old June 2nd, 2010, 09:54 AM posted to microsoft.public.excel.misc
Ms-Exl-Learner
external usenet poster
 
Posts: 522
Default remove all duplicates?

Assume that the first column consist the Column Headers and the A Column is
having the Employee Names and the C Column is having the Participated
Employee Names.

Copy and paste the below formula in B2 cell
=IF(A2="","",IF(ISNA(VLOOKUP(A2,C:C,1,FALSE)),"Not
Participated",IF(VLOOKUP(A2,C:C,1,FALSE)=A2,"Parti cipated","")))

Drag the B2 cell formula to the remaining cells of B Column based on the A
Column Data.

Remember to Click Yes, if this post helps!

--------------------
(Ms-Exl-Learner)
--------------------


"snow" wrote:

Hey.

I have office 2003. Was wondering how do you remove all duplicates?

I have a column with the names of the employees, and another column with the
names of those who have participated in a course. How/ what formula shall I
use to find out who haven’t participated in that course?

I appreciate your help

Regards Svetlana Wik

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 12:49 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.