Sub CleanUp()
Selection.AutoFilter Field:=3, Criteria1:="<>*JAX*", Operator:=xlAnd
Range("C6").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.EntireRow.Delete
ActiveSheet.ShowAllData
Range("C6").Select
'end of 1st step
Rows("5:5").Select
Selection.AutoFilter
Columns("A:B").Select
Selection.Delete Shift:=xlToLeft
Rows("5:5").Select
'Selection.Delete Shift:=xlUp
Rows("1:3").Select
Range("A3").Activate
Selection.Delete Shift:=xlUp
Range("A1").Select
ActiveCell.FormulaR1C1 = "Project Name"
With ActiveCell.Characters(Start:=1, Length:=12).Font
.Name = "Tahoma"
.FontStyle = "Bold"
.Size = 10
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 1
Columns("B:G").Select
Selection.Delete Shift:=xlToLeft
Range("A2").Select
ActiveCell.FormulaR1C1 = "Project Name"
Range("A1").Select
'Last Step
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Copy
Workbooks.Add
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Cells.Select
Selection.ColumnWidth = 120.29
Cells.EntireColumn.AutoFit
Cells.Select
Cells.EntireRow.AutoFit
Range("C1").Select
Application.CutCopyMode = False
Selection.AutoFilter
ChDir "C:\Documents and Settings\daileri\Desktop"
ActiveWorkbook.SaveAs Filename:= _
"C:\Documents and Settings\daileri\Desktop\SOM Tollgate Report.xls", _
FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
End With
Range("A1").Select
End Sub