Format Number

  • Thread starter Thread starter ms.maryw
  • Start date Start date
M

ms.maryw

I am trying to figure out how to format $100.00 as 10000. When I
format it I get 100 or 100.00. Thank you
 
Hi,

Select the cells and choose Format, Cells, Custom, and enter the following
custom format:

General"00"
 
What if the $100.00 was only a badly chosen example and other money amounts
like $123.45 could occur?
 
Both David and Shane methods work if your data is value or formated as
currency, ie 100.00 or $100.00
However, if your data is text which was typed in as $100.00, try this
formula and copy as far down as your data is :

=VALUE(SUBSTITUTE(A2,"$","")*100)

--
HTH

Appreciate that you click the Yes button below if this posting is helpful

cheers, francis
 
Back
Top