PROBLEMS WITH FORMATING COLUMNS

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to format a column to only allow 7 characters and it's still not
working, can anyone help me?
 
Assuming column is column A, highlight column (or range)

Data=>Validation

Allow: Custom

Formula: =LEN(A1)=7

This will allow only a length of 7 (no more/no less!)

You can add your own message in "Error Alert"

HTH
 
Assuming column is column A, highlight column (or range)
Data=>Validation

Allow: Custom

Formula: =LEN(A1)=7

This will allow only a length of 7 (no more/no less!)

You should also Format the column as Text so as to allow entries of numbers
with leading zeroes (such as, 0001234).

Rick
 
Good point ... thanks!

Rick Rothstein (MVP - VB) said:
You should also Format the column as Text so as to allow entries of numbers
with leading zeroes (such as, 0001234).

Rick
 
Back
Top