Product Codes in Excel - Easy Excel Tutorial
Product Codes in Excel - Easy Excel Tutorial
html
Excel Easy
#1 Excel tutorial on the net Excel Introduction Basics Functions Data Analysis VBA 300 Examples Ask us
Product Codes
This example teaches you how to use data validation to prevent users from entering incorrect product codes.
Chapter
1. Select the range A2:A7.
Data Validation
Budget Limit
Product Codes
Drop-down List
2. On the Data tab, click Data Validation.
product-codes.xls
1 of 5 08-11 05:35 PM
Product Codes in Excel - Easy Excel Tutorial http://www.excel-easy.com/examples/product-codes.html
4. In the Formula box, enter the formula shown below and click OK.
Explanation: this AND function has three arguments. LEFT(A2)="C" forces the user to start with the letter C.
LEN(A2)=4 forces the user to enter a string with a length of 4 characters. ISNUMBER(VALUE(RIGHT(A2,3)))
forces the user to end with 3 numbers. RIGHT(A2,3) extracts the 3 rightmost characters from the text string. The
2 of 5 08-11 05:35 PM
Product Codes in Excel - Easy Excel Tutorial http://www.excel-easy.com/examples/product-codes.html
VALUE function converts this text string to a number. ISNUMBER checks whether this value is a number. The
AND Function returns TRUE if all conditions are true. Because we selected the range A2:A7 before we clicked on
Data Validation, Excel automatically copies the formula to the other cells.
As you can see, this cell also contains the correct formula.
3 of 5 08-11 05:35 PM
Product Codes in Excel - Easy Excel Tutorial http://www.excel-easy.com/examples/product-codes.html
Note: to enter an input message and error alert message, go to the Input Message and Error Alert tab.
Learn more about data validation, use the side menu >>
4 of 5 08-11 05:35 PM
Product Codes in Excel - Easy Excel Tutorial http://www.excel-easy.com/examples/product-codes.html
5 of 5 08-11 05:35 PM