Sub tpstatmacro()
'
' tpstatmacro Macro
'
' Keyboard Shortcut: Ctrl+Shift+M
'
Dim ws As Worksheet
Application.ScreenUpdating = False
For Each ws In ActiveWorkbook.Sheets
'False to extend the current selection to include
' any previously selected objects and the specified object
ws.Select False
Next ws
Columns("A:B").Select
Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Range("A4").Select
ActiveCell.FormulaR1C1 = "SW Eff"
Range("B4").Select
ActiveCell.FormulaR1C1 = "FA"
Range("B5").Select
ActiveCell.FormulaR1C1 = _
"=RIGHT(CELL(""filename"",R[-4]C[-1]),LEN(CELL(""filename"",R[-4]C[-1]))-FIND(""]"",CELL(""filename"",R[-4]C[-1])))"
Range("B5").Select
Selection.AutoFill Destination:=Range("B5:B43")
Range("B5:B43").Select
Range("A1:O43").Select
Range("B5").Activate
Selection.Copy
ActiveSheet.Previous.Select
Range("A4").Select
Application.Run "PERSONAL.XLSB!PasteValue"
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveCell.SpecialCells(xlLastCell).Select
Range("A46").Select
Application.ScreenUpdating = True
End Sub