Formatting a decimal representation of millions

  • Thread starter Thread starter stunnie
  • Start date Start date
S

stunnie

Hi,

How can I format a number in a cell such as 0.55 (the cell heading is $
millions in another cell to read $550K? Is this possible?

Thanks,

s
 
This will return text:
=TEXT(A1*1000000,"$0,")&"K"

This will return a value (in millions):
=A1*1000000
but give it a custom format of:
$0,K
(Format|cells|number tab|custom category)
 
=TEXT(A1*1000,"$0\K")

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Hmmm.

I guess that multiplying by a million and dividing by 1000 isn't time well
spent????

But even shorter:
=TEXT(A1*1000,"$0K")
<gd&r>
 

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