Is there a formula to show $5,000,000 as $5M?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking for an easy way to convert $M values to eliminate the 6 zeros.

Thanks.
 
You could try something like this:
=IF(RIGHT(A1,6)="000000",A1/1000000&"M",A1)

unless someone has a better idea....

Sheila
 
Another option:
=TEXT(A1,"$ #,, ""M""")

Another option would be to keep the value in the cell, and use a similar
Custom format.
 
Another option:
=TEXT(A1,"$ #,, ""M""")

Another option would be to keep the value in the cell, and use a similar
Custom format.
Custom format
$ 0,,\M
 

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