Chop number of characters in a cell

M

Mary E. Hill

Hi, everyone! I hope we have some geniuses out there who can help me;)

I've got a column with 30,000 cells in it and I need to limit the number of
characters per cell to 15. The data present is sometimes longer than 15
characters and sometimes shorter.

I want the characters at the end of the string to drop off.

I'm sure there is some way to do this, but haven't a clue myself.

Can anyone help?

Thanks SO much for reading...

Mary
 
A

Andy B

Mary

Use a helper column alongside your existing column. Type

=LEFT(A2,15)

in B2 and then fill down your column to autofill the formula down.
This returns the first 15 characters of A2, If you want to place that actual
value into the cell, select the column, Copy, Paste Special and select
Values.

Andy
 
M

Mary E. Hill

Andy B said:
Mary

Use a helper column alongside your existing column. Type

=LEFT(A2,15)

in B2 and then fill down your column to autofill the formula down.
This returns the first 15 characters of A2, If you want to place that actual
value into the cell, select the column, Copy, Paste Special and select
Values.

Andy

Aaahhh - genius's - THANKS!
 

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