As you are developing a spreadsheet, you may want to limit what users are able to put into a particular cell. For instance, you might want to make sure that entries in a cell are exactly four characters long, begin with the number 6, are followed by any digit, then by a letter, and then by any digit.
There are three ways to go about such a validation. The first, of course, is to write a macro that will check input and ensure that the entries follow the desired pattern. The way to concoct such a macro has been covered in other issues of ExcelTips.
Another method, without using macros, is to rely upon the data validation feature of Excel. If the number of valid entries is not terribly long, you might try these general steps:
Figure 1. The Data Validation dialog box.
Now, whenever someone tries to enter data that is not included in your list of acceptable values, the validation rules kick into effect and the user is forced to change the entry.
You can also use the data validation feature in a bit of a different way. If you have well-defined rules for your data entry then you can put together a formula that describes a valid entry. The following is one such formula:
=AND((LEN(A1)=4),(LEFT(A1,1)="6"),(ISNUMBER(VALUE( (MID(A1,2,1))))),(CODE(MID(UPPER(A1),3,1))>64),(CODE( MID(UPPER(A1),3,1))<91),(ISNUMBER(VALUE((MID(A1,4,1))))))
Remember that this is a single formula, entered all on one line, using the following general steps:
You may get an error when you click on OK, based on the contents of A1. (Excel may try to tell you that the contents of A1 don't validate according to the rule.) This is OK; the validation rule you are setting up will come into play when someone tries to enter something in the cell.
The formula basically pulls apart the entry being made and determines if each character is within bounds. If not, then the result of the formula is FALSE, and the validation rules come into play.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11212) applies to Microsoft Excel 2007 and 2010. You can find a version of this tip for the older menu interface of Excel here: Limiting Input to a Format.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel Data Analysis and Business Modeling today!
One way to make your worksheets less complex is to get rid of detail and keep only the summary of that detail. Here's how ...
Discover MoreIf a word contains a special character within it, Excel actually thinks the single word is two words. This tip examines ...
Discover MoreHave a worksheet in which there may be entire columns that are duplicates of each other? If you want to delete those ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-06-13 08:23:34
Quinn Farley
Can a validation list be any value entered into a multi-column, multi-row array?
2016-06-13 07:59:33
Alex
The List option above can be used for a longer list of valid entries as well.
1). Create the list of valid entries in a separate worksheet.
2). Give the above worksheet a name.
3). With the source field on the Data Validation form selected, navigate to the table created in step 1) above and highlight all entries.
The validation list will then appear as the Validation criteria source, eg =Test!$B$2:$B$5
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments