Hi,
You can use Conditional format.
 
If your data is in Column A, say A2:A51, then select all your data, starting 
with the first cell.
Then choose Conditional format from the format menu
Select Formula Is from the first dropdown
Then paste in the following:
=COUNTIF($A$2:$A51,$A2)>1
Select the format of your choice, eg red bold text, then click OK
 
Change the refs to suit your data.
Regards - Dave.



> Date: Sun, 2 Nov 2008 20:40:30 -0800> Subject: $$Excel-Macros$$ Re: How to 
> findout Duplicate items> From: [EMAIL PROTECTED]> To: 
> excel-macros@googlegroups.com> > > Its working well... could you pls let me 
> know is there any other way> through forumula do the same function without 
> using macro.> > On Nov 1, 4:43 am, [EMAIL PROTECTED] wrote:> > Use below 
> code.> >> > Sub DupFinder()> > Dim r As Range, t As Range> > Cells(1, 
> ActiveCell.Column).Select> > Range(Selection, Selection.End(xlDown)).Select> 
> > Set t = Selection> > For Each r In t> > v = r.Value> > If 
> Application.WorksheetFunction.CountIf(t, v) > 1 Then> > r.Interior.ColorIndex 
> = 3> > End If> > Next> > End Sub> >> > Select first cell of the column where 
> you have your data and run the macro. All the duplicates will turn red.> >> > 
> ___________________________________________________________________________­______________________>
>  > "There are known knowns. These are things we know that we know. There are 
> known unknowns. That is to say, there are things that we know we don't know. 
> But there are also unknown unknowns. There are things we don't know we don't 
> know."> >> > ________________________________> > From: vinod kumar kumar 
> <[EMAIL PROTECTED]>> > To: excel-macros@googlegroups.com> > Sent: Friday, 31 
> October, 2008 5:50:41 PM> > Subject: $$Excel-Macros$$ How to findout 
> Duplicate items> >> > Hello All,> >> > Could you pls help me out in the below 
> issue.> >> > I have 50 amounts in a single column, those are repeated 
> amounts.> > I would like to know which are all repeated amounts by 
> highlighting or something like that.> >> > Thanks> > --> > Vinu> >> > 
> (¨`*.*´¨) Always> > `*.¸(¨`*.*´¨) Keep> > (¨`*.*´¨)¸.*´ Smiling!> > `*.¸.*´> 
> >> >       Add more friends to your messenger and enjoy! Go 
> tohttp://messenger.yahoo.com/invite/> > 
> _________________________________________________________________


--~--~---------~--~----~------------~-------~--~----~
Visit the blog to download Excel tutorials at 
http://www.excel-macros.blogspot.com

To post to this group, send email to excel-macros@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/excel-macros?hl=en

Visit & Join Our Orkut Community at 
http://www.orkut.com/Community.aspx?cmm=22913620

Visit the blog to download Excel tutorials at 
http://www.excel-macros.blogspot.com

To Learn VBA Macros Please visit http://www.vbamacros.blogspot.com

To see the Daily Excel Tips, Go to:
http://exceldailytip.blogspot.com
-~----------~----~----~----~------~----~------~--~---

Reply via email to