-- You can use something like this to get a list of all the different labels. -- From there, it depends on how your InDesign document and frames are set up set numTables to 3 set numSeats to 5 set theLabels to {} repeat with t from 1 to numTables set theTable to "Table " & t repeat with s from 1 to numSeats set theSeat to "Seat " & s set theLabels to (theLabels & (theTable & " " & theSeat)) end repeat end repeat return theLabels --> {"Table 1 Seat 1", "Table 1 Seat 2", "Table 1 Seat 3", "Table 1 Seat 4", "Table 1 Seat 5", "Table 2 Seat 1", "Table 2 Seat 2", "Table 2 Seat 3", "Table 2 Seat 4", "Table 2 Seat 5", "Table 3 Seat 1", "Table 3 Seat 2", "Table 3 Seat 3", "Table 3 Seat 4", "Table 3 Seat 5"}
... View more