Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I convert a text number to dollar amount ?
Example : 711 to 7.11 17263 to 172.63 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Just divide the number by 100, eg:
=A1/100 if your value is in A1. Hope this helps. Pete julz wrote: How do I convert a text number to dollar amount ? Example : 711 to 7.11 17263 to 172.63 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Divide by 100
=Value(A1)/100 where A1=711 (or =Value(A1)*0.01) are values TEXT or INTEGER? If the the latter, =A1*0.01 will be OK. "julz" wrote: How do I convert a text number to dollar amount ? Example : 711 to 7.11 17263 to 172.63 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
divide by 100
=A1/100 change to "Dollar" (text result, not numeric): =DOLLAR(A1/100) change to Fixed (text result): =FIXED(A1,2) "julz" wrote in message ... How do I convert a text number to dollar amount ? Example : 711 to 7.11 17263 to 172.63 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't understand what you mean by "dollar amount" but it looks like you can
just divide the number by 100. To do that for a range of cells follow this procedure. 1. Enter 100 in a blank cell 2. Copy the cell 3. Select the range you want to divide by 100 4. Right Click and select "paste special" 5. Select "values" and "divide" and click ok. "julz" wrote: How do I convert a text number to dollar amount ? Example : 711 to 7.11 17263 to 172.63 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi julz. In an empty cell type in 100. Copy the cell. Next, select all the
cells you want to convert and go to Edit - Paste Special and select Divide. This will convert the text to a number and give you 2 decimal places. HTH -- Sincerely, Michael Colvin "julz" wrote: How do I convert a text number to dollar amount ? Example : 711 to 7.11 17263 to 172.63 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to convert text to numbers | Excel Discussion (Misc queries) | |||
Keep Trailing Zeros When Convert To Text | Excel Discussion (Misc queries) | |||
How do I convert excel file into ASCII text file with alignment? | Excel Discussion (Misc queries) | |||
Formulas dealing with text data | Excel Worksheet Functions | |||
Convert data of cells to any type: Number, Date&Time, Text | Excel Discussion (Misc queries) |