The datatable in which you read the CSV, make sure the column you are facing the issue in has string data type. The commas are getting affected because CSV uses comma as separators.
If the final Excel is a template, you can add the datatype on a column too, make it as a currency datatype
Excel Scope Read Range, store in DataTable variable
For each row In dt1
Assign activity: row("YourColumnName") = "'"+If(IsNumeric(row("columnname").ToString), CDbl(row("columnname")).ToString("0.00"), "0.00")
Write Range, use the DataTable variable and overwrite the excel file.
In that case your system - system locale - is set-up to interpret comma as thousands separator (not decimal separator) → before writing to Excel replace comma “,” by point “.”
@ppr
so i need to use read column activity after copying the csv file in the excel file and replace it instead of 102,562 in your sentence right ?
Double.Parse(ColonneDecimal.ToString, System.Globalization.CultureInfo.CreateSpecificCulture(“fr-FR”)).ToString