I have a excel input sheet. In that excel sheet A1 row is the header row. I used read range activity to read from A1 row but I have to exclude A2 row And start processing from A3 line items. How can I do it? Is there any way?
Let’s take like you have the datatable read and named as dt
Now there are two scenarios
If you want to have the first row after header but should process that means
Use a FOR EACH ROW activity and pass dt as input
Inside the loop use a IF condition like this
NOT dt.Rows.IndexOf(CurrentRow).Equals(0)
IF TRUE means it goes to THEN block and inside that have all the activities to process all the rows except first row
Or
There is another scenario where you don’t want that first row itself after headers means