I have tried various expressions to do [what appears to be] the simple task of copying an excel table between two worksheets. In addition, I need to enclose the expression inside a loop. Here are four expressions (all beginning with "Sheets") I have tried. All of them compile, but then crash upon running:
p = 6
For i = 1 To NumTables
'Read "OP LLs" table into "EIRP budget"
Sheets("EIRP Budget").[B6:L17] = Sheets("OP LLs").Range(Cells(p, 2), Cells(p + 11, 12))
Sheets("EIRP Budget").[B6:L17] = Sheets("OP LLs").[Cells(p, 2), Cells(p + 11, 12)]
Sheets("OP LLs").Range(Cells(p, 2), Cells(p + 11, 12)).Copy Sheets("EIRP Budget").[B6]
Sheets("OP LLs").["B" & p & : & "L" & p + 11].Copy Sheets("EIRP Budget").[B6:L17]
p = p + 15
Next
Any help would be greatly appreciated.