Formatting Text Cells

  • Thread starter Thread starter JohnnyCat
  • Start date Start date
J

JohnnyCat

I have cells that have variable length text in them. I want to forma
the cell so the total length of the cell is 35 characters. In othe
words, after the text, I would like spaces following the text, so th
total number of characters will be 35.

Thanks for your help
 
Hi
you could use the following in a helper column:
=A1 & REPT(" ",35-LEN(A1))
 
Thanks for your quick reply.

I tried that and got the "#VALUE!" in the cell.

Also, it seems like for this solution I would have to put this formul
into a cell for every text entry (changing the reference cell) that
have to format. This will cause a problem because there are 1000s o
values
 
Ok, that works but how can I apply this to all the cells? Withou
enntering a2, then a3, etc..
 
If those cells are all in one column, you could use a helper column and drag
that formula down as far as you need.
 

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

Back
Top