I have used “for each” loop and stored 2 column(column 1,column 2) then i find duplicate values for 2 each column and to paste column by column in another sheet(sheet2), i could able to showed in message box but couldn’t able to paste column by column in excel . please can anyone help this.
Hi
—first we can read the data from the excel with read range and get the variable of type datatable
—now from datatable we can remove the duplicate with REMOVE DUPLICATE RECORDS activity
—then can be passed to another excel with write range
in WRITE RANGE mention like Convert.ToChar(65+Counter)+“1”
where counter is a variable of type int32 with default value as 0
and next to that write range activity use a assign activity and increment the counter variable like this counter = counter +1