FORMATING COLUMNS..... HELP

J

JTEFUN

I need to format columns to allow only 7 characters and the rest of the data
to go into column B
 
G

Gordon

JTEFUN said:
I need to format columns to allow only 7 characters and the rest of the
data
to go into column B


If you mean that if a user types a lot of data into the one cell and that
when they reach 7 characters the rest of the data is automatically inserted
into the next cell, then I don't think you can do that. (Might by code -
someone will tell you...)
 
G

Gordon

JTEFUN said:
I need to format columns to allow only 7 characters and the rest of the
data
to go into column B


If you mean that if a user types a lot of data into the one cell and that
when they reach 7 characters the rest of the data is automatically inserted
into the next cell, then I don't think you can do that. (Might by code -
someone will tell you...)
 
B

Bill Ridgeway

JTEFUN said:
I need to format columns to allow only 7 characters and the rest of the
data
to go into column B

Column A: Input
Column B: =LEFT(A1,7) will abstract the first 7 characters
Column C: =MID(A1,8,99) will abstract characters 8 through 99

Regards.

Bill Ridgeway
Computer Solutions
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top