@amithvs
I am not sure I got you in all.
Excel 2:
peach
peach
strawberry
strawberry
peach
And the expected result is a new excel with:
Workheet: peach
Rows: Row1, Col1 =peach, Row2, Col1 =peach, Row3, Col1 =peach
Worksheet: strawberry
Rows: Row1, Col1 =strawberry, Row2, Col1 =strawberry
Yes, but the fruit name keeps on changing…sometimes it can be watermelon that is having 10 info…so need to create a sheet for watermelon and put all watermelon in that sheet.
Even if the data is one it should be segregated and placed into a new sheet with its name.
i developed this by using for loop and filter data table activity…But its very time consuming.
@amithvs
Give a try:
readin excel in a datatable (Read Range)
Create a list from distinct fruit names (LINQ/DataSetExtensions Distinct Method helps for this)
Iterate over the list with distinct fruit names
inside the iteration:
use fruitname to collect all information for this fruitname
@amithvs
In the case of you need some further help then please also post for 2 scenarios an input sample and an output sample (e.g. *.xlsx) along with your question.