Usable format

  • Thread starter Thread starter veryeavy
  • Start date Start date
V

veryeavy

Hi all,

I have just received a large data dump and need to convert the following
dollar amounts into a usable format.

0000137708.64+
0000020138.12+
0000081434.24+
0000093316.26+
0000054740.17+

what is the clever way?

Thanks in Advance,

Matt
 
Paste them into A1 in an Excel file...
Choose Data->Text to column...
Choose Fixed width
Click Next
Separate the column just before the + sign
Click FINISH
 
Assuming there can be either + or - signs at the end of your data and that
your data starts in A1, put this formula in an unused column on Row 1 and
copy it down...

=--MID(A1&A1,LEN(A1),LEN(A1))

Then Copy it and use Paste Special / Values to paste the converted data back
into Column A and delete the formulas from the formally unused column.
 
Of course, if the data is always a fixed 14 characters long, my formula can
be simplified to this...

=--MID(A1&A1,14,14)
 

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