Ben_Entrew
Registered User.
- Local time
- Yesterday, 21:03
- Joined
- Dec 3, 2013
- Messages
- 177
Dear all,
from time to time this code doesn't run giving the error message:
Method 'Cells' of object '_Global' failed
It opens both Excel tables, but it fails to insert a column.
Every help is much appreciated.
Thank you.
Regards,
Ben
from time to time this code doesn't run giving the error message:
Method 'Cells' of object '_Global' failed
It opens both Excel tables, but it fails to insert a column.
Every help is much appreciated.
Thank you.
Regards,
Ben
Code:
Public Sub Format_BD_Excel()
'Get all Excel files in proper format
Dim oExcel As Object
Dim oBook, oBook2 As Object
Dim lastcolumn_BD, lastrow_BD As Long
Dim lastcolumn_BD2, lastrow_BD2 As Long
Dim i, a As Integer
Dim sht, sht2 As Object
Dim rs As Recordset
Dim file2 As String
Dim s As String
'folderlocation_BD = "C:\Users\dveb8x\Desktop\888\BD List\"
'repmonth = "202108"
file2 = "C:\Users\dveb8x\Desktop\*.xlsx"
Set oExcel = CreateObject("Excel.Application")
oExcel.Application.DisplayAlerts = False
oExcel.Visible = True
Set oBook = oExcel.Workbooks.Open("" & folderlocation_BD & "BD_List_" & s & "_" & repmonth & ".xls")
Set oBook2 = oExcel.Workbooks.Open("" & file2 & "")
Set sht = oBook.Sheets(1)
Set sht2 = oBook2.Sheets(1)
With oBook2
sht2.Activate
sht2.UsedRange 'Refresh UsedRange
oExcel.Columns("C:C").Select
oExcel.Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
End With
With oBook
sht.Range("A11").Select
End with
oExcel.Quit
End Sub