These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Dynamic Table question . . . Copy of a table

rodbunn
Registered: Feb 3 2008
Posts: 81

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

My Product Information:
LiveCycle Designer, Windows
rodbunn
Registered: Feb 3 2008
Posts: 81
I ended up using the if (Exists()) for each possible row of data.....

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.......