n3tw0rkadm1n1strat0r
IS-IT--Management
I am getting this error when running my script: "Unable to get the SpecialCells property of the Range class error"
Here is my code in vbs:
Thanks to anyone who can help.
Here is my code in vbs:
Code:
Set objExcel = CreateObject("Excel.Application")
objExcel.Application.DisplayAlerts = False
objExcel.Visible = False
Set objWorkbook = objExcel.Workbooks.Open("C:\temp.csv")
objExcel.Range("A1:I1").Select
objExcel.Selection.Font.Bold = True
objExcel.Selection.Font.Size = 11
objExcel.Selection.Interior.ColorIndex = 11
objExcel.Selection.Interior.Pattern = 1 'xlSolid
objExcel.Selection.Font.ColorIndex = 2
objExcel.Selection.WrapText = True
objExcel.Columns("A:I").Select
objExcel.Selection.HorizontalAlignment = 3 'xlCenter
objExcel.Selection.Borders.LineStyle = 1 '= xlSolid
objExcel.Columns("A:A").Delete
objExcel.Cells(1,1).Value = "Name"
objExcel.Cells(1,2).Value = "Email"
objExcel.Cells(1,3).Value = "City"
objExcel.Cells(1,4).Value = "State"
objExcel.Cells(1,5).Value = "Job Title"
objExcel.Cells(1,6).Value = "Phone Number"
objExcel.Cells(1,7).Value = "Department"
objExcel.Cells(1,8).Value = "Company"
objExcel.Columns("A:AH").EntireColumn.AutoFit
objExcel.Range("B:B").Select
objExcel.Selection.Specialcells(xlCellTypeBlanks).Entirerow.Delete
objExcel.ActiveWorkbook.SaveAs("C:\List.xls"), 43
objExcel.Quit
Thanks to anyone who can help.