D
deko
After exporting a table from Access into Excel, I need to move the data down
45 rows via automation.
This is working, but seems inefficient:
Do While fr < 45
xlapp.Workbooks(strXlsFile).Worksheets(sn).Cells(fr + 1, "A"). _
EntireRow.Insert shift:=xlDown
fr = fr + 1
Loop
Is there a better way to move this contiguous block of cells? There is no
other data in the worksheet, and the cells always begin at A1.
Thanks in advance.
45 rows via automation.
This is working, but seems inefficient:
Do While fr < 45
xlapp.Workbooks(strXlsFile).Worksheets(sn).Cells(fr + 1, "A"). _
EntireRow.Insert shift:=xlDown
fr = fr + 1
Loop
Is there a better way to move this contiguous block of cells? There is no
other data in the worksheet, and the cells always begin at A1.
Thanks in advance.