Character limitations for excel fields

A

aspen

I need to allow users of a spreadsheet to only be able to type a certain
number of characters in a paricular field. How would I do that?
 
M

Mike H

Hi,

If you realy mean characters then
data|validation
Select text length and set your parameters. This does not affect the amount
of numbers in the cell.

If you mean the length of any input then:-
data|validation
Select formula is and enter this
=LEN(A1)<6
This works for numbers and text

Mike
 
A

aspen

Please be a bit more clear as I have never done this before. I need to set a
paramater of no more than 32 charaters to be entered into a field on a
spreadsheet. What is the exact way the formula should read?
 
M

Mike H

OK character and NOT the amount of numbers:-

Select your cell then click
Data|Validation
Select 'Text Length'
select 'Less than or equal to"
enter 32
Click OK

Mike
 
A

aspen

This formula gives me an error message after typing 1 character and I need to
be able to type 32.
 
T

TOM M

after following your instructions it still only lets me add 15 #'s any #'s
after that show up as zero's?????
 
D

Dave Peterson

Excel only keeps track of 15 significant digits.

You can either start your data entry with an apostrophe: '1234123412341234
or
preformat the cell as text.
 
T

TOM M

the apostrophe worked... thanks much
--
Tom M


Dave Peterson said:
Excel only keeps track of 15 significant digits.

You can either start your data entry with an apostrophe: '1234123412341234
or
preformat the cell as text.
 
Top