Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Excel 2007, forbidding repeats within a column?
Is there a way in Excel 2007 to create a rule (for the lack of a better term) that would NOT allow any user to duplicate a phone number (for example) in a column, or throughout the entire sheet?
So if I want the Data Validation to look at the entire sheet (assuming the data is between A1-Z1000) do I put
=COUNTIF($A$1:$Z$1000,B1)<2
I'm not sure about the B1 part you have in the formula. I'm not concerned with any text as a matter of fact I'd rather it not even look at text, just phone numbers can't be duplicated anywhere in the range. The phone numbers have the exact same format (ex: (409) 736-1234).
Any ideas?
3 Answers
- Anonymous1 decade agoFavorite Answer
If you only have one column storing phone numbers, then using Data Validation with a Custom formula will prevent duplicates in that column:
=COUNTIF( B:B, B1 ) < 2
But if you have phone numbers being entered in several columns and rows all over a worksheet, then you will need to create some VBA code that will work whenever data changes anywhere on the worksheet.
It would need to take place on the Worksheet_SelectionChange event and search all cells to see if there is a match somewhere. It would be a small loop to do the search, and it would run fairly fast.
- Anonymous5 years ago
Columns:16,384 Rows:10,48,576
- CozmosisLv 71 decade ago
---EDIT---
When you select a range of cell to add Data validation too, the B! in this case represents the first cell in the data range. You are wanting to count how many times B1 occurs in a data range. If B1 is the first cell in the selected range you are applying the validation to, you would use B1 in the formula. Excel will then automatically adjust the B1 in the formula to B2, for cell B2, B3 for cell B3.
So if you select A1 to Z1000 for data validation, you would use...
=COUNTIF($A$1:$Z$1000, A1)<2
...because A1 is the first cell in the selected range.
I hope that helps.
---
You want to use the Data Validation feature. The example below prevents duplicate entries in B1 to B100
1) Select the range of cells that you wish to validate. (In this example: B1:B100)
2) Click Data Tools group > Data Tab > Data Validation.
3) Click the Settings tab in the Data Validation dialog box
4) Select "Custom" in the Allow drop-down list
5) Put this formula in the Formula input box
=COUNTIF($B$1:$B$1000,B1)<2
6) Specify Excel’s response to the invalid data on the Error Alert tab.
OK
The formula counts all the values in the range B1:B100 that equal the value in B1. If there is more than 1, it gives the user an Error Alert message.
The B1 in the formula is a relative reference and will change to B2, B3, etc. for the other cells in column B.
.
Source(s): Use Data Validation in Excel 2007: video http://revver.com/video/699245/use-data-validation...