Text to Column

A

ajyourpal

Is there any way to separate Dollar amount to another column (last five
digits)?
Not all figuers have a $ sign in front of the amount.
Thank you

USPS 0545019576 LOS ANGELES CA 9.60
USPS 0545019576 LOS ANGELES CA 9.40
USPS 0545019577 LOS ANGELES CA 4.70
SHELL OIL 57442712808 UPLAND CA 16.20
VONS FUEL 10026813 UPLAND CA 26.50
 
D

David Biddulph

If you want the last 5 characters, use =RIGHT(A1,5) if you want it as text,
or =RIGHT(A1,5) if you want it as a number.
 
D

Dave Peterson

David meant:

=--right(a1,5)

if you want it as a number.

The -- is the same thing as multiplying by -1 twice. But it also changes the
text value (returned from the =right() function) to a real number.
 
A

ajyourpal

Thank you
At first I could not change the format to $ because I coverted it to text.
Now I will change it again with the new formula as a number.
 
Top