R
RichW
When importing data (xls) an append function adds the new rows of data to an
existing table; for example, if you have a table with 5 rows of data and you
append 2 rows to the table, you now have 7 rows of data in the table. This
also means that the associations you have established for your first 5 rows
remain intact.
But, what if the data you wish to import makes a change to 1 of the first 5
rows, or adds a new row within the first 5 rows, essentially shifting the
other rows down by 1 and making 6 rows? How are those original associations
kept intact?
existing table; for example, if you have a table with 5 rows of data and you
append 2 rows to the table, you now have 7 rows of data in the table. This
also means that the associations you have established for your first 5 rows
remain intact.
But, what if the data you wish to import makes a change to 1 of the first 5
rows, or adds a new row within the first 5 rows, essentially shifting the
other rows down by 1 and making 6 rows? How are those original associations
kept intact?