Another:
Sub RunMe()
Dim wsSum As Worksheet: Set wsSum = Sheets("Summary")
Dim ws As Worksheet
Dim rFind As Range, rAcc As Range
'Pay attention to capitalization!!!!!
Set rAcc = wsSum.Range(wsSum.Cells(1, 1), wsSum.Cells(1, Columns.Count)).Find("accuracy", , xlValues, xlWhole)
If rAcc Is Nothing Then
MsgBox ("Could not identify accuracy column in summary sheet")
Exit Sub
End If
For Each ws In Worksheets
If ws.Name <> wsSum.Name Then
Set rFind = ws.Range(ws.Cells(1, 1), ws.Cells(1, Columns.Count)).Find("Accuracy", , xlValues, xlWhole)
If Not rFind Is Nothing Then
rFind.Offset(1).Resize(ws.Cells(Rows.Count, rFind.Column).End(xlUp).Row, 1).Copy wsSum.Cells(Rows.Count, rAcc.Column).End(xlUp).Offset(1, 0)
End If
End If
Next ws
End Sub
Bookmarks