Can any one help me how to remove the ’ from a column using uipath. The Call ID column has an ID which is 19 digits long. If removing the ’ from start it is showing up in scientific notation. I have attached the sample file here.
(Sample file is in csv format but could not upload here as csv format is not supported). Test1.xlsx (10.5 KB)
To remove the ’ from the Call ID column :
Once you read the data and assigned it to a Data Table variable say DT1, use for loop to loop through its items. Use an assign activity iniside and
row(“Call ID) = row(“Call ID).ToString.Replace(”'”,“”)
This will replace all the single quotes from call ID column.
Hello @Abhi15
Kindly refer this flow, it may helps you SampleCSVprocess.zip (77.2 KB)
in folder, “Test1” is inpur file, “Output” is ’ removed output file
Thanks for the solution , but in the output file the column is showing up in the scientific notation (7.13366E+18 = 7133660926383810000) and the value is getting changed completely. (original ID=7133660926383817253)
Thanks for the solution , but in the output file the column is showing up in the scientific notation (7.13366E+18 = 7133660926383810000) and the value is getting changed completely. (original ID=7133660926383817253)
[/quote]