In Excel sheet there is 3 column . But the count of data in these column is vary in each data like ( 1st the count of each row is 20 ,2nd the count of each row is 40 ,3rd the count of each row is 30, 4rd the count of each row is 32) like this . Here i need only A column data to copy another sheet . Any one have any idea please help me in this
Note
Each day the count of these 3 columns are different,but i need all data’s in A column is copy to another sheet .
Read the sheet as a datatable
Take an assign activity
in the RHS of Assign
write something like this - dtNew.DefaultView.ToTable(False,"ColumnName")
here dtNew is a datatabe variable of the sheet your read, in the LHS just take a new datatable variable.
Now print that new datatable variable in that specific range, you will get the single required column.