Text to Columns from the Left

  • Thread starter Thread starter Jim
  • Start date Start date
J

Jim

I have a column that has the following:

***************025
25

I need to reduce the column width, but I need to keep the
numbers and 9 stars. When I use text to columns, it wants
to seperate the records with stars from the records with
just numbers. Any idea's?

Thanks Guys !!
Jim
 
This is worksheet.functions.. so if you want a formula solution, you can
try:

=IF(ISNUMBER(FIND("*",A1)),REPT("*",9)&SUBSTITUTE(A1,"*",""),A1)
 
Thanks !!! You are the man !!!
-----Original Message-----
This is worksheet.functions.. so if you want a formula solution, you can
try:

=IF(ISNUMBER(FIND("*",A1)),REPT("*",9)&SUBSTITUTE (A1,"*",""),A1)





.
 

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