Hi ParreLaws,
Considering that your XML looks something like this:
<main>
<main1>
<page1>
<repeat>
<firstName>
<lastName>
<middleName>
<repeat>
<firstName>
<lastName>
<middleName>
<repeat>
<firstName>
<lastName>
<middleName>
You can add the following scirpt at the ffield level (for firsName):
this.rawValue = xfa.resolveNode("$record.main1.page1.repeat.firstName").value;
Note: 1) $record always refer to the parent node (here it is main). So, it is not requied to mention the top most parent name main in the path.
2) Since the index is not mentioned, the above script will always take the first repeating intance values
Keep the binding as Global
Please let me know if there is any issue.
Thanks,