Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to convert 1.234,00- to -1,234.00 for calculatation and
accounting purposes. I received the formula for the trailing -: =IF(TRIM(RIGHT(A1,1))="-","-"&SUBSTITUTE(TRIM(A1),"-",""),TRIM(A1)) The decimal comma problem can be corrected with a long edit/replace excercise: , to x and . to y and then replace the x and y again with the correct decimal and comma. Can anyone help with one formula or VBA to do this all at once? And can such a formula cater for negative and positive numbers? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
--Select the range
--Hit Ctrl+H. Find what: , (comma) Replace with: leave blank and replace all --From menu select DataText to ColumnsNextNext --From 'Convert text to columns wizard Step3 of 3' hit 'Advanced' button. Make sure you have checked 'trailing minus for negative numbers' and hit OK. --Hit finish If this post helps click Yes --------------- Jacob Skaria "wynand" wrote: I would like to convert 1.234,00- to -1,234.00 for calculatation and accounting purposes. I received the formula for the trailing -: =IF(TRIM(RIGHT(A1,1))="-","-"&SUBSTITUTE(TRIM(A1),"-",""),TRIM(A1)) The decimal comma problem can be corrected with a long edit/replace excercise: , to x and . to y and then replace the x and y again with the correct decimal and comma. Can anyone help with one formula or VBA to do this all at once? And can such a formula cater for negative and positive numbers? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Try the formula, =IF(ISNUMBER(FIND("-",A1)),"-","")&TRIM(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTI TUTE(A1,".","x"),",","."),"x",","),"-","")) Please click "Yes" if this is helpful. Regards, B. R. Ramachandran "wynand" wrote: I would like to convert 1.234,00- to -1,234.00 for calculatation and accounting purposes. I received the formula for the trailing -: =IF(TRIM(RIGHT(A1,1))="-","-"&SUBSTITUTE(TRIM(A1),"-",""),TRIM(A1)) The decimal comma problem can be corrected with a long edit/replace excercise: , to x and . to y and then replace the x and y again with the correct decimal and comma. Can anyone help with one formula or VBA to do this all at once? And can such a formula cater for negative and positive numbers? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Issue with Number Conversion to text | Excel Worksheet Functions | |||
Number conversion to text in Ms excel | Excel Worksheet Functions | |||
Text to Number conversion | New Users to Excel | |||
PREVENT conversion of text to number? | Excel Discussion (Misc queries) | |||
Conversion of a Number into English Text | Excel Worksheet Functions |