ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   New Users to Excel (https://www.excelbanter.com/new-users-excel/)
-   -   want to find duplicate Phone numbers when typed in excel 2003 (https://www.excelbanter.com/new-users-excel/239415-want-find-duplicate-phone-numbers-when-typed-excel-2003-a.html)

trvlpal

want to find duplicate Phone numbers when typed in excel 2003
 
I create a column and when i put a phone number in I want to have it
indivcate if its a duplicate perferrable in red

T. Valko

want to find duplicate Phone numbers when typed in excel 2003
 
Let's assume this is your data:

A1: 12345
A2: 54321
A3: 12345

Which cell(s) should be highlighted?

--
Biff
Microsoft Excel MVP


"trvlpal" wrote in message
...
I create a column and when i put a phone number in I want to have it
indivcate if its a duplicate perferrable in red




Charles T. Garrett

want to find duplicate Phone numbers when typed in excel 2003
 
Using column "A", place this formula in "conditional formatting" in cell
"A1", and format the font to "red". Now highlight cell "A1" and all of the
cells you want to perform this function in, and "fill down".

=COUNTIF(A:A,A1)1





"trvlpal" wrote in message
...
I create a column and when i put a phone number in I want to have it
indivcate if its a duplicate perferrable in red




Don Guillett

want to find duplicate Phone numbers when typed in excel 2003
 
Right click sheet tabview codeinsert thischange column ltr to suit and
color index to suit.

Private Sub Worksheet_Change _
(ByVal Target As Range)
If Intersect(Target, Columns("M")) _
Is Nothing Then Exit Sub
If Application.CountIf(Columns("m"), _
Target) 1 Then
MsgBox "Duplicate"
Target.Interior.ColorIndex = 6
End If
End Sub


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"trvlpal" wrote in message
...
I create a column and when i put a phone number in I want to have it
indivcate if its a duplicate perferrable in red



Bob Umlas[_3_]

want to find duplicate Phone numbers when typed in excel 2003
 
Select the whole column (say it's col A), use Format/Conditional Formatting,
change "Cell Value Is" to "Formula Is", enter this formula:
=COUNTIF($A$1:$A$1000,A1)1
click Format, then Patterns tab, then select the red font.
HTH
Bob Umlas
Excel MVP


"trvlpal" wrote in message
...
I create a column and when i put a phone number in I want to have it
indivcate if its a duplicate perferrable in red





All times are GMT +1. The time now is 07:44 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com