OK.
Sub yankeekid86()
'
' StatusView_QuotaCheck Macro
' BWW Status Viewer- Subtracting Total - Excluded in order to paste into Quota Check
'
Rows("1:2").Delete Shift:=xlUp
Columns("B:B").ColumnWidth = 14.43
Range("R1") = "Actual"
With Range("R2:R" & Activesheet.usedrange.rows.count)
.FormulaR1C1 = "=RC[-1]-RC[-9]"
.Value = .Value
End With
Columns("B:Q").Delete Shift:=xlToLeft
Cells.Interior.ColorIndex = xlNone
Range("A1") = "Store ID"
Range("A1").Font.ColorIndex = xlAutomatic
Range("A1:B1").Font.Bold = True
Cells.Font.Name = "Times New Roman"
Cells.Font.Size = 10
Range("B3").Select
End Sub
Or
Selection.AutoFill Destination:=Range("R2:R" & activesheet.usedrange.rows.count)
Bookmarks