Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am entering numbers in a column and it is important that I get alerted to
any duplication of a previous number. How do I do this? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
right click sheet tabview codeinsert thismodify for your columnSAVE
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column < 2 Then Exit Sub If Application.CountIf(Columns(2), Target) 1 Then MsgBox "Dup" End Sub -- Don Guillett SalesAid Software "waldo" wrote in message ... I am entering numbers in a column and it is important that I get alerted to any duplication of a previous number. How do I do this? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Chip Pearson has instructions for using Data Validation to prevent
duplicate entries: http://www.cpearson.com/excel/NoDupEntry.htm waldo wrote: I am entering numbers in a column and it is important that I get alerted to any duplication of a previous number. How do I do this? -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Consecutive Numbers down a column not to Exceed 49 | Excel Worksheet Functions | |||
column filtering to match identical numbers | Excel Discussion (Misc queries) | |||
match and count words | Excel Worksheet Functions | |||
Return Count for LAST NonBlank Cell in each Row | Excel Worksheet Functions | |||
How do I prevent duplicate numbers from being entered in a column. | Excel Discussion (Misc queries) |