All I want to do is to have a "copy" of a Dynamic table on a form further down on my form. I tried to copy the form and paste it on the next page BUT it doesn't grow/shrink in rows when I change the first table, AND it doesn't "fill in" when I put data into the first table.
In other words, I want two tables, when I fill in one, I want the other to fill in with the exact data. When I add a row and then put data in it, I want the second tabe to also get the data.
THanks for any help in advance !!!!!!!!!
Rod
PS. LiveCycle8 form
if (Exists(SpecialistTable.Row1[0].SpecName)) then
/* Copy this row to my other table */
else
/* Don't do anything */
endif
if (Exists(SpecialistTable.Row1[1].SpecName)) then
/* Copy this row to my other table */
else
/* Don't do anything */
endif
if (Exists(SpecialistTable.Row1[2].SpecName)) then
/* Copy this row to my other table */
else
/* Don't do anything */
endif
And so on for number of possible rows.......