Ok, So I have a table from which I have to extract a particular set of data from odd rows and another set of data from even rows. I understand how to do them individually (do "From tag path" on tr, start row from 0 for even and 1 for odd,and change increments to 2). So what I have is two for each loops.
Since I am creating a REST service, each set of data goes under a unique item tag. But I want to merge the results from these 2 loops.
For example, say I get NAME from odd rows and I get AGE from even rows, Then I want the Name and the following Age to come under one ITEM tag. But sine I am using two loops, NAME goes under a different ITEM tag and AGE goes under a different ITEM tag.
Hope this was not confusing.
Thanks