Hi all,
I have imported a range of pdfs into excel and populates the same cells in every worksheet.
Each worksheet names starts from 'Page001' and will continue to Page055. The page numbers are odd numbers. 'Page001' 'Page003' 'Page005' and so on.
On each sheet the range copied is
" Sheets("Page019").Select
Selection.AutoFilter
Range("A9:B16").Select
Selection.Copy"
Application.WindowState = xlNormal
Workbooks.Open Filename:= _ "External sheet to copy data"
ActiveWindow.Close
Workbooks.Add
Here I wanted to add to a specific line as that is where the data entry finishes.
" Range("A552").Select"
I'm also transposing it with the below
" Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True"
I can get it to work for one sheet but unsure how to cycle through multiple sheets to copy and paste the new data into the new sheet "External sheet to copy data"
It is something that should be easy. But brain fog is hitting me
I have imported a range of pdfs into excel and populates the same cells in every worksheet.
Each worksheet names starts from 'Page001' and will continue to Page055. The page numbers are odd numbers. 'Page001' 'Page003' 'Page005' and so on.
On each sheet the range copied is
" Sheets("Page019").Select
Selection.AutoFilter
Range("A9:B16").Select
Selection.Copy"
Application.WindowState = xlNormal
Workbooks.Open Filename:= _ "External sheet to copy data"
ActiveWindow.Close
Workbooks.Add
Here I wanted to add to a specific line as that is where the data entry finishes.
" Range("A552").Select"
I'm also transposing it with the below
" Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True"
I can get it to work for one sheet but unsure how to cycle through multiple sheets to copy and paste the new data into the new sheet "External sheet to copy data"
It is something that should be easy. But brain fog is hitting me