I have a blank structured table in one workbook and I wish to populate it column by column from another table in another workbook with the same sheet, table, column names.
I tried this:
But that doesn't seem to work, I'm guess because the DataBodyRange sizes are different (blank table has one row, source table has X number of rows).
Can someone suggest the proper way to populate without using select or copy/paste?
Thanks,
Jeff
I tried this:
Code:
wbA.Sheets(Sht).ListObjects(tbl).ListColumns(col).DataBodyRange.Value = src.Sheets(Sht).ListObjects(tbl).ListColumns(col).DataBodyRange
But that doesn't seem to work, I'm guess because the DataBodyRange sizes are different (blank table has one row, source table has X number of rows).
Can someone suggest the proper way to populate without using select or copy/paste?
Thanks,
Jeff