Dollars to text without loosing zeros from decimal places

D

DOK

I need to convert dollars to text but the decimal place digits must remain
since this will be converted to a txt file for file transfers. When I
convert $19,500.00 to text it becomes 19500 but I need the zeros from the
decimal places.
Your help is truly appreciated.
Thank you
 
D

David Biddulph

=TEXT(A1,"0.00") or =TEXT(A1,"$#.00"), depending on whether or not you want
the $ symbol.
 
P

Peo Sjoblom

Use a help column and text function

=TEXT(A1,"$#,##0.00")


copy down as long as needed, then copy and paste special in place, then
export the help column or just copy and paste over the old data


--


Regards,


Peo Sjoblom
 
D

DOK

Thank you but this still gives me a decimal point which must be removed or it
rounds up to the next whole number.
 
P

Peo Sjoblom

Where did you state that the decimal point must be removed in your original
post? You only said you wanted the decimals to remain? Just multiply with
100, then copy and paste special as values, then format as text.



--


Regards,


Peo Sjoblom
 

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