Same macro. Different workbook. I am now getting a run time error 438 Object doesn't support this property at the point I highlighted below.
Sub LTWO()
'
' LTWO Macro
'
' Keyboard Shortcut: Ctrl+m
'
Range("A2").Select
Rows("1:1").Select
Selection.Insert Shift:=xlDown
Range("A1").Select
ActiveCell.FormulaR1C1 = "SHIP_DATE"
Range("B1").Select
ActiveCell.FormulaR1C1 = "WB NBR"
Range("C1").Select
ActiveCell.FormulaR1C1 = "CAR_INIT"
Range("D1").Select
ActiveCell.FormulaR1C1 = "CAR_NBR"
Range("E1").Select
ActiveCell.FormulaR1C1 = "CAR MARK & DATE"
Range("F1").Select
ActiveCell.FormulaR1C1 = "ORIGIN"
Range("G1").Select
ActiveCell.FormulaR1C1 = "DESTINATION"
Range("H1").Select
ActiveCell.FormulaR1C1 = "L/E CODE"
Range("I1").Select
ActiveCell.FormulaR1C1 = "STCC"
Range("J1").Select
ActiveCell.FormulaR1C1 = " TOTAL"
Range("K1").Select
ActiveCell.FormulaR1C1 = " SUPPLEMENT"
Range("L1").Select
ActiveCell.FormulaR1C1 = " AMT_CLAIM"
With ActiveSheet
BottomRow = .UsedRange.SpecialCells(xlCellTypeLastCell).Row
.Columns("E:E").Insert Shift:=xlToRight
.Range("E1").FormulaR1C1 = "CAR MARK"
.Range("E2:E" & BottomRow).FormulaR1C1 = "=CONCATENATE(RC[-2],"" "",RC[-1])"
.Columns("E:E").AutoFit
.Columns("A:A").Insert Shift:=xlToRight
.Range("A2:A" & BottomRow).FormulaR1C1 = "=CONCATENATE(RC[2],RC[3],RC[4])"
.Columns("A:A").AutoFit
.Range("L2:L" & BottomRow).FormulaR1C1 = _
"=SUMIF(R[1]C[-11]:R" & BottomRow + 1 & "C1,RC[-11],R[1]C[-1]:R" & BottomRow + 1 & "C[-1])"
.UsedRange.Value = .UsedRange.Value
.Range("M2:M" & BottomRow).FormulaR1C1 = "=SUM(RC[-2]:RC[-1])"
.Sort.SortFields.Clear
.Sort.SortFields.Add Key:=Range("M2:M" & BottomRow), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
.Sort.SortFields.Add Key:=Range( _
"D2:D" & BottomRow), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
.Sort.SortFields.Add Key:=Range( _
"B2:B" & BottomRow), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
With .Sort
.SetRange Range("A1").CurrentRegion
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
Dim rngDupChk As Range
With Intersect(ActiveSheet.UsedRange, Columns("A"))
Set rngDupChk = .Offset(, ActiveSheet.UsedRange.Column + ActiveSheet.UsedRange.Columns.Count)
rngDupChk.Formula = "=If(A" & .Row & "="""",0,If(countif(" & .Address & ",A" & .Row & ")>1,1,0))"
End With
With rngDupChk
.AutoFilter 1, 1
.Offset(1).EntireRow.Delete
.AutoFilter
.EntireColumn.Delete
End With
BottomRow = .UsedRange.SpecialCells(xlCellTypeLastCell).Row
With .Range("K" & BottomRow & ":M" & BottomRow)
.Borders(xlDiagonalDown).LineStyle = xlNone
.Borders(xlDiagonalUp).LineStyle = xlNone
.Borders(xlEdgeLeft).LineStyle = xlNone
.Borders(xlEdgeTop).LineStyle = xlNone
With .Borders(xlEdgeBottom)
.LineStyle = xlContinuous
.ColorIndex = 0
.TintAndShade = 0
.Weight = xlMedium
End With
.Borders(xlEdgeRight).LineStyle = xlNone
.Borders(xlInsideVertical).LineStyle = xlNone
.Borders(xlInsideHorizontal).LineStyle = xlNone
End With
.Range("K" & BottomRow + 1).FormulaR1C1 = "=SUM(R[-" & BottomRow - 1 & "]C:R[-1]C)"
.Range("L" & BottomRow + 1).FormulaR1C1 = "=SUM(R[-" & BottomRow - 1 & "]C:R[-1]C)"
.Range("M" & BottomRow + 1).FormulaR1C1 = "=SUM(RC[-2]:RC[-1])"
End With
Range("A2").Select
End With
End Sub
Bookmarks