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

E

ExcelHelp

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

Thanks.
 
S

Sheila D

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

unless someone has a better idea....

Sheila
 
D

Dana DeLouis

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

Another option would be to keep the value in the cell, and use a similar
Custom format.
 
B

Bob Tarburton

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
 
Top