Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I convert text $123.45 to the number 123.45?
Ed |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Ed,
Try something like: '============= Public Sub Tester() With Range("A1") .NumberFormat = "#,##0.00" .Value = .Value End With End Sub '<<============= --- Regards, Norman "Ed" wrote in message ... How do I convert text $123.45 to the number 123.45? Ed |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Selection.NumberFormat = "0.00"
-- Best wishes, Jim "Ed" wrote: How do I convert text $123.45 to the number 123.45? Ed |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
filter on currency number format | Excel Discussion (Misc queries) | |||
specifying currency together with a number in a single field | Excel Worksheet Functions | |||
Number changed to Currency and ... | Excel Worksheet Functions | |||
reading currency/number | Excel Discussion (Misc queries) | |||
Conversion from currency value to currency text format | Excel Programming |