English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

how do you make a column to where it will not let me duplicate something that is already in that column?

2006-11-01 05:31:38 · 5 answers · asked by bran084 2 in Computers & Internet Software

In column A I have a list of numbers. Each day I have to add more to the end of the list, but I cannot duplicate them. Can it be set up to where it either warns me or does not allow me to type in a number that is already in that column?

2006-11-01 05:40:01 · update #1

5 answers

Select Tools-Macro-Visual Basic Editor. Select the sheet that you are working on and copy this code onto the right side.


Private Sub Worksheet_Change(ByVal Target As Range)
For counter = 1 To Target.Row
If Target.Value = Cells(counter, Target.Column) Then
MsgBox "This value is the same as in Row " & counter
Exit For
End If
Next
End Sub

This should pop up an error message whenever you try to replicate a value that is already in the column. It might slow down performance if the spreadsheet gets too large.

2006-11-02 11:04:51 · answer #1 · answered by Jeffrey C 3 · 0 0

Have you cleared the formatting, or turned off the auto-fill? Is that what's happening? Are you talking about where it finishes typing a word for you? If you keep typing what you want it won't auto-fill.
I hope I helped but I think I may not have understood your question!
Ps. It took me MONTHS of self teaching to get the hang of Excel, and their 'type a question for help' isn't always very helpful at all!

2006-11-01 13:36:48 · answer #2 · answered by Sweet! 4 · 0 0

I use Microsoft, use a 2 columnn page, landscape, print you first colum then, copy and paste it on the next column.

2006-11-01 13:35:12 · answer #3 · answered by dancinintherain 6 · 0 0

Can you re-word that question a bit better? Basically, it is unintelligible.

2006-11-01 13:33:53 · answer #4 · answered by Jack 5 · 0 0

right click, format

2006-11-01 13:33:12 · answer #5 · answered by xerocs 5 · 0 0

fedest.com, questions and answers