I have a column containing numbers with mixed decimal separators.

I need to use "," as separator.
How do I change dot into comma?
With ThisWorkbook.Worksheets("RAW").Range("A1")
.Value = Replace(.Value, ".", ",")
End With
Is there any way to store it as general/numeric?
I tried this
With ThisWorkbook.Worksheets("RAW").Range("A1")
.NumberFormat = "General"
.Value = Replace(.Value, ".", ",")
.NumberFormat = "General"
.Value = .Value
End With
