Dollars to text without loosing zeros from decimal places

  • Thread starter Thread starter DOK
  • Start date Start date
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
 
=TEXT(A1,"0.00") or =TEXT(A1,"$#.00"), depending on whether or not you want
the $ symbol.
 
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
 
Thank you but this still gives me a decimal point which must be removed or it
rounds up to the next whole number.
 
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

Back
Top