hello all I want to open csv file and perform some operation . how to do it
@dhanashree22 are you trying to open the CSV file for UI Automation ? Try to achieve most of the action using UiPath CSV Activities.
https://docs.uipath.com/activities/docs/read-csv-file
If you still want to open, use Start activity and provide file full path.
I want t select two column i.e N O and perform duplicate number operation on that… how do it?
Your Steps would be as follows below.
Use Read Csv activity and get the out as Datatable.
Use Assign Create a new Datatable variable ie
newDt = readDt.DefaultView.ToTable(true,“YourDuplicateColumn1”,“YourDuplicateColumn2”).CopyTodatatable
Use write range or write Csv the new Dt
Regards
Regards