#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 60
Default unique cell entry

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default unique cell entry

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 60
Default unique cell entry

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default unique cell entry

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 60
Default unique cell entry

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 142
Default unique cell entry

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,593
Default unique cell entry

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cell Entry That Locks Selected Cells From Any Data Entry. ron Excel Worksheet Functions 5 February 16th 07 09:52 PM
Counting Unique entry from Concatenated list Rajat Excel Worksheet Functions 28 January 4th 07 04:18 AM
Unique entry count Montrose77 Excel Discussion (Misc queries) 7 August 15th 06 08:28 PM
a unique cell value returns multiple cell values from another shee grflded Excel Worksheet Functions 0 September 25th 05 04:21 AM
How do I make a unique entry Lynn Bales New Users to Excel 9 August 15th 05 10:55 PM


All times are GMT +1. The time now is 07:18 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"