Hi All,
I need to copy the Specific rows (Based on Name) from a spreadsheet and paste in other Excel.
Ex: In Excel its having 100 rows with 10 Provider names. Each provider has 10 to 15 Rows.
Appreciate your help! Thanks.
Hi All,
I need to copy the Specific rows (Based on Name) from a spreadsheet and paste in other Excel.
Ex: In Excel its having 100 rows with 10 Provider names. Each provider has 10 to 15 Rows.
There are two options
(a) Read the excel, loop thru and based on criteria write the rows to another excel
OR
(b) Open the excel, use filter option and copy paste
1.Use read range activity to store your values in the datatable
2.Use for each row , inside that use if condition
row(“License”).ToString.contains(“STWA-”)
3.If the condition is true , then use assign activity or use write range to store your values.
@anon96676723 You can go step by step
Hi ,
This will help you to copy the specific rows.
Regards
Balamurugan.S