Hi,You need to reference the correct instance in the table.Even though
the table will physically have two rows when you look at it, the second
row will be an instance of Row1. It is still called Row1 but with the
instance specified.The first repeating row instance will be -
form1.Pg1.Table1.Row1[0].itemDescription.rawValuethenform1.Pg1.Table1.Row1[1].itemDescription.rawValue
//row 2form1.Pg1.Table1.Row1[2].itemDescription.rawValue //row 3 and so
onI have highlighted the difference above. The sam...