Just wanted to add some more info as this thread has got some looks but no replies. I have copied and pasted the macro that I am try to tweak below. The macro creates a new worksheet, however everytime I execute the macro, it doesn't add the figures from my new templated worksheet to the cells in my summary sheet. Please help?
Sub Newworksheet()
'
' Newworksheet Macro
' Adds a new worksheet that automatically feeds the summary sheet
'
' Keyboard Shortcut: Ctrl+a
'
Cells.Select
Selection.Copy
Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Paste
Application.CutCopyMode = False
Sheets("Summary").Select
Range("M10").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Doe)'!R[19]C,'AAR (SFC Smith)'!R[19]C,Sheet1!R[19]C)"
Range("M15").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Doe)'!R[47]C,'AAR (SFC Smith)'!R[47]C,Sheet1!R[47]C)"
Range("M21").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Doe)'!R[75]C,'AAR (SFC Smith)'!R[75]C,Sheet1!R[75]C)"
Range("M23").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Doe)'!R[87]C,'AAR (SFC Smith)'!R[87]C,Sheet1!R[87]C)"
Range("M25").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Doe)'!R[100]C,'AAR (SFC Smith)'!R[100]C,Sheet1!R[100]C)"
Range("M31").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Smith)'!R[140]C,'AAR (SFC Doe)'!R[140]C,Sheet1!R[140]C)"
Range("L41").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Smith)'!R[189]C,'AAR (SFC Doe)'!R[189]C,Sheet1!R[189]C)"
Range("L42").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Doe)'!R[189]C,'AAR (SFC Smith)'!R[189]C,Sheet1!R[189]C)"
Range("L43").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Smith)'!R[189]C,'AAR (SFC Doe)'!R[189]C,Sheet1!R[189]C)"
Range("L44").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Doe)'!R[189]C,'AAR (SFC Smith)'!R[189]C,Sheet1!R[189]C)"
Range("L45").Select
ActiveCell.FormulaR1C1 = _
"=AVERAGE('AAR (SFC Smith)'!R[189]C,'AAR (SFC Doe)'!R[189]C,Sheet1!R[189]C)"
Range("L46").Select
Sheets("Sheet1").Select
Range("N213").Select
End Sub