Loop and merge scrapped Table values and relevant get text values

Hello @Sathish_Kumar_S

You could start off by building the final datatable for all your results, and then inject the rows with Add Data Row activity as you work your way through the parts.

In the For Each Row in Data Table activity looping the “lowest level” of values, your base parts subtable, you create a new DataRow and assign the values to this.

The top 3 values you should save as variables and scrape the bottom table.

Assign dtrw_NewRow = dt_FinalResults.NewRow()
// add all top values above
Assign dtrw_NewRow = str_ProgramCode
// add values from table
Assign dtrw_NewRow("Evaluation") = basepartRow("Evaluation")
Assign dtrw_NewRow("Milestone Range") = basepartRow("Milestone Range")
// And so on...

After assigning values to your row, you can use a Add Data Row activity to add it to dt_FinalResults.

I have tried to recreate a sequence showing this below.
Simply ignore the red and yellow warnings, as I have not indicated any targets.

Best regards
Soren