Check this Section from the Reference Manual: Using the unique ID Example ID: -KBhs8D0JovTXIUmcSyb To find this ID, you must use the inspect element in your browser (The following example was done using chrome) Step 1 Identify the repeating section. For this example we will use the longsword from the attacks section Step 2 Right click on the longsword and go down to inspect Step 3 On the right side of the screen, you should see a section like Step 4 Scroll up until you see a section called that looks like <div class="repitem" data-reprowid="-KC0zCLum1Rq3V5wssyE"> Step 5 This is the row id of the repeating section item. -KDTm69QmubU7dhnKwFO To copy the value easily, right click the id, select “Edit Attribute” and copy the id. Using this id means that you will always reference the specific item desired as long as it exists regardless of its position in the repeating section. It being first it the list or in the middle does not matter with this method. Example: @{NAME|repeating_attack_-KDTm69QmubU7dhnKwFO_name} Using the two examples for both methods, we would both get the name of the first item in the attack section but if the section is rearranged, the first using row id would now return the name of the new first item in the attack repeating section while the second would still return the name of same item it did before regardless of order assuming it still exists.