Dont see anything strange, except for some minor improvements
Should work if you change your last part of code to:
Columns("A:D").Delete
Columns("B:B").Delete
ActiveSheet.Cells(1, 1) = "Product Category"
Dim lastrow As Long
lastrow = ActiveSheet.Cells(Rows.Count, "H").End(xlDown).Row
With ActiveSheet.PageSetup
.PrintArea = ActiveSheet.Range("$A1:H" & lastrow).Address
.CenterHeader = "&""-,Bold""&12Google " & ActiveSheet.Name & " 2014 Bill"
.LeftMargin = Application.InchesToPoints(0)
.RightMargin = Application.InchesToPoints(0)
.TopMargin = Application.InchesToPoints(0.5)
.BottomMargin = Application.InchesToPoints(0)
.HeaderMargin = Application.InchesToPoints(0.25)
.FooterMargin = Application.InchesToPoints(0)
.PrintHeadings = False
.PrintGridlines = False
.PrintComments = xlPrintNoComments
.PrintQuality = 600
.CenterHorizontally = True
.CenterVertically = False
.Orientation = xlLandscape
.Draft = False
.PaperSize = xlPaperLetter
.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
.BlackAndWhite = False
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = False
.PrintErrors = xlPrintErrorsDisplayed
.OddAndEvenPagesHeaderFooter = False
.DifferentFirstPageHeaderFooter = False
.ScaleWithDocHeaderFooter = True
.AlignMarginsHeaderFooter = True
End With
Columns("G:G").ColumnWidth = 18
Bookmarks