Hi,I don't believe you can achieve what you want with global binding,
this has the effect of assigning all fields with the same name the same
value and as the fields in the second row will have the same names as
fields in the first row, they will also have the same values.One way of
achieving what you want it to have a calculate event script in the
second table that copies values over, something like;var rows =
xfa.resolveNodes("Table1.Row1[*]"); _Row1.setInstances(0); // make sure
min count is ...