CONVERTIR UN CHIFFRE US EN CHIFFRE EURO DANS EXCEL
Solved
ARTHUR03
-
FBC -
FBC -
Hello,
Hello everyone and especially to you who are reading me.
I am looking for a macro or a tip in Excel that allows converting numbers in US format (e.g., 123,456.78) to numbers in European format (e.g., 123456,78)
Thanks in advance!
Hello everyone and especially to you who are reading me.
I am looking for a macro or a tip in Excel that allows converting numbers in US format (e.g., 123,456.78) to numbers in European format (e.g., 123456,78)
Thanks in advance!
Configuration: Windows 2000 Internet Explorer 6.0
5 answers
-
Hello,
by formula:
=CNUM(SUBSTITUE(SUBSTITUE(A1;"},";"." ) ; "." ; "," ))
by function:
Function convert_US(usa) As Double
convert_US = CDbl(Replace(Replace(usa, "," , "" ), "." , ","))
End Function
--
Michel -
Hello,
Well, you right-click the concerned cell and choose "Format Cells" and you have all the possible options under the "Number" tab.
--
Best regards.
Jean-Pierre -
And if none of the choices (post 1) are suitable, select Category Custom, and in the small window "Type:" type #####0.00 and validate.
--
That’s right, retirement! Especially in the Caribbean... :-)
Raymond -
And if none of the options (post 1) is suitable, choose Category Custom, and in the small window “Type:”, type #####0.00 and validate.
--
That’s right, retirement! Especially in the Caribbean ... :-)
Raymond -