Every month I get 700 new files to clean.
I have a macro for that, but the work has always been done manually, one file at a time.
I want to run this macro on every file at once.
Sub IBO()
Rows("1:6").Select
Selection.Delete Shift:=xlUp
Rows("16:18").Select
Selection.Delete Shift:=xlUp
ActiveWindow.SmallScroll Down:=6
Rows("31:38").Select
Selection.Delete Shift:=xlUp
ActiveWindow.SmallScroll Down:=12
Rows("46:46").Select
Selection.Delete Shift:=xlUp
Rows("46:47").Select
Range("R46").Activate
Selection.Delete Shift:=xlUp
ActiveWindow.ScrollColumn = 9
ActiveWindow.ScrollColumn = 8
ActiveWindow.ScrollColumn = 7
ActiveWindow.ScrollColumn = 5
ActiveWindow.ScrollColumn = 4
ActiveWindow.ScrollColumn = 2
ActiveWindow.ScrollColumn = 1
ActiveWindow.SmallScroll Down:=15
Rows("62:62").Select
Selection.Delete Shift:=xlUp
ActiveWindow.SmallScroll Down:=-24
Rows("34:34").Select
Selection.Insert Shift:=xlDown
ActiveWindow.SmallScroll Down:=-9
Rows("19:19").Select
Selection.Insert Shift:=xlDown
ActiveWindow.SmallScroll Down:=-12
Rows("4:4").Select
Selection.Insert Shift:=xlDown
Range("B17:C17").Select
ActiveWindow.SmallScroll Down:=6
Range("B17:P32").Select
Selection.Copy
Range("R1").Select
ActiveSheet.Paste
ActiveWindow.SmallScroll Down:=15
Range("B33:T48").Select
Application.CutCopyMode = False
Selection.Copy
Range("AG1").Select
ActiveSheet.Paste
Range("A1:A3").Select
ActiveWindow.SmallScroll Down:=33
Range("B49:M49").Select
ActiveWindow.SmallScroll Down:=6
Range("B49:S64").Select
Application.CutCopyMode = False
Selection.Copy
Range("AZ1").Select
ActiveSheet.Paste
Range("BQ1").Select
End Sub
I just want to know how to add this macro on something so it would run on all files at once.