Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a worksheet that several people enter info onto my problem is that
some of the info gets duplicated and causes a miscount in the numbers, I have to go back and track down the duplicate entries and delete them. I have column headers like this TICKET# PRODUCT TANK# LOADER STARTTIME and several other heading. The ticket# is a unique non duplicating, is there anyway I can get the workbook to not accept a TICKET# that has already been entered in previously in the worksheet. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Trap it on input by adding data validation to those cells with a formula
like =COUNTIF($A$1:A1,A1)=1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... I have a worksheet that several people enter info onto my problem is that some of the info gets duplicated and causes a miscount in the numbers, I have to go back and track down the duplicate entries and delete them. I have column headers like this TICKET# PRODUCT TANK# LOADER STARTTIME and several other heading. The ticket# is a unique non duplicating, is there anyway I can get the workbook to not accept a TICKET# that has already been entered in previously in the worksheet. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bob that works fine and I am able to notice the entry duplicate by the
background change but our tickets are in a desending order 8 characters long. Is there anyway that once the number is entered that if it matches a previously entered number that it won't accept it or notify the person entering the info that this number has already been entered. "Bob Phillips" wrote: Trap it on input by adding data validation to those cells with a formula like =COUNTIF($A$1:A1,A1)=1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... I have a worksheet that several people enter info onto my problem is that some of the info gets duplicated and causes a miscount in the numbers, I have to go back and track down the duplicate entries and delete them. I have column headers like this TICKET# PRODUCT TANK# LOADER STARTTIME and several other heading. The ticket# is a unique non duplicating, is there anyway I can get the workbook to not accept a TICKET# that has already been entered in previously in the worksheet. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I said data validation (DataValidation), not conditional formatting. Use a
type of custom with that formula and you will see an error on input. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... Bob that works fine and I am able to notice the entry duplicate by the background change but our tickets are in a desending order 8 characters long. Is there anyway that once the number is entered that if it matches a previously entered number that it won't accept it or notify the person entering the info that this number has already been entered. "Bob Phillips" wrote: Trap it on input by adding data validation to those cells with a formula like =COUNTIF($A$1:A1,A1)=1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... I have a worksheet that several people enter info onto my problem is that some of the info gets duplicated and causes a miscount in the numbers, I have to go back and track down the duplicate entries and delete them. I have column headers like this TICKET# PRODUCT TANK# LOADER STARTTIME and several other heading. The ticket# is a unique non duplicating, is there anyway I can get the workbook to not accept a TICKET# that has already been entered in previously in the worksheet. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bob I was putting the formula in my validation, I guess I was just entering
it wrong after I re-entered it being carful to be exact as you wrote the formula worked fine the problem was all with me. THANK YOU for your quick responce and helpful formula. "Bob Phillips" wrote: I said data validation (DataValidation), not conditional formatting. Use a type of custom with that formula and you will see an error on input. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... Bob that works fine and I am able to notice the entry duplicate by the background change but our tickets are in a desending order 8 characters long. Is there anyway that once the number is entered that if it matches a previously entered number that it won't accept it or notify the person entering the info that this number has already been entered. "Bob Phillips" wrote: Trap it on input by adding data validation to those cells with a formula like =COUNTIF($A$1:A1,A1)=1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... I have a worksheet that several people enter info onto my problem is that some of the info gets duplicated and causes a miscount in the numbers, I have to go back and track down the duplicate entries and delete them. I have column headers like this TICKET# PRODUCT TANK# LOADER STARTTIME and several other heading. The ticket# is a unique non duplicating, is there anyway I can get the workbook to not accept a TICKET# that has already been entered in previously in the worksheet. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
There is one problem Bob.
When we paste a value that is already in the list, the validation doesn't work unless ofcourse press F2 and hit enter) making it work as if you entered the value in cell - It's only then the validation works. Is there a work around to catch duplicate entry even if the value is pasted in same list & not entered? The mentioned formula works fine while value is "entered" & not when "pasted" : ) -------------------------------------------------------------------------------------------------------------------------------------------- On Mar 6, 3:26 am, "Bob Phillips" wrote: I said data validation (DataValidation), not conditional formatting. Use a type of custom with that formula and you will see an error on input. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... Bob that works fine and I am able to notice the entry duplicate by the background change but our tickets are in a desending order 8 characters long. Is there anyway that once the number is entered that if it matches a previously entered number that it won't accept it or notify the person entering the info that this number has already been entered. "Bob Phillips" wrote: Trap it on input by adding data validation to those cells with a formula like =COUNTIF($A$1:A1,A1)=1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... I have a worksheet that several people enter info onto my problem is that some of the info gets duplicated and causes a miscount in the numbers, I have to go back and track down the duplicate entries and delete them. I have column headers like this TICKET# PRODUCT TANK# LOADER STARTTIME and several other heading. The ticket# is a unique non duplicating, is there anyway I can get the workbook to not accept a TICKET# that has already been entered in previously in the worksheet.- Hide quoted text - - Show quoted text - |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
No, you would have to use VBA to do that.
-- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "Sinner" wrote in message ups.com... There is one problem Bob. When we paste a value that is already in the list, the validation doesn't work unless ofcourse press F2 and hit enter) making it work as if you entered the value in cell - It's only then the validation works. Is there a work around to catch duplicate entry even if the value is pasted in same list & not entered? The mentioned formula works fine while value is "entered" & not when "pasted" : ) -------------------------------------------------------------------------------------------------------------------------------------------- On Mar 6, 3:26 am, "Bob Phillips" wrote: I said data validation (DataValidation), not conditional formatting. Use a type of custom with that formula and you will see an error on input. -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... Bob that works fine and I am able to notice the entry duplicate by the background change but our tickets are in a desending order 8 characters long. Is there anyway that once the number is entered that if it matches a previously entered number that it won't accept it or notify the person entering the info that this number has already been entered. "Bob Phillips" wrote: Trap it on input by adding data validation to those cells with a formula like =COUNTIF($A$1:A1,A1)=1 -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "tankerman" wrote in message ... I have a worksheet that several people enter info onto my problem is that some of the info gets duplicated and causes a miscount in the numbers, I have to go back and track down the duplicate entries and delete them. I have column headers like this TICKET# PRODUCT TANK# LOADER STARTTIME and several other heading. The ticket# is a unique non duplicating, is there anyway I can get the workbook to not accept a TICKET# that has already been entered in previously in the worksheet.- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell Entry That Locks Selected Cells From Any Data Entry. | Excel Worksheet Functions | |||
Counting Unique entry from Concatenated list | Excel Worksheet Functions | |||
Unique entry count | Excel Discussion (Misc queries) | |||
a unique cell value returns multiple cell values from another shee | Excel Worksheet Functions | |||
How do I make a unique entry | New Users to Excel |