• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Problems with convering "," into "."

Guys,

Im using the attached Excel file. Because I would like to read my file into R I want to replace my "," values in column G into ".". However, when I select everything and do replace all with ",", "." Excel sometimes translates 1,11 into 11.11. See for example record 370.

Doe anybody know why this happens? And is there a quick fix?

Thanks.

Marc
 

Attachments

  • fte_analyse.xlsx
    274.1 KB · Views: 0
You should be able to use something like this to replace "," with "."
In H2: =SUBSTITUTE(G2,",",".")
 
Back
Top