Hi Josh
This code should do the trick
assumptions the data to be extracted is in a worksheet called "A" and cell A1, is being extracted to a workbook and worksheet called "Results".
you will have to set the file paths of the folder the workbooks are in and the Results workbook.
CODE:
Public Sub GetInfo()
Dim target As Workbook
Dim sCurFile As String
Dim sPath As String
Dim i As Integer
i = 1
Workbooks.Open ("C:\test\Results.xls")
sPath = "C:\Desktop" & "\"
sCurFile = Dir(sPath & "*.xls", vbNormal)
Do While Len(sCurFile) <> 0
i = i + 1
Workbooks.Open sPath & sCurFile, , True
Workbooks("Results").Worksheets("Results").Cells(i, 1).Value = Workbooks _ (sCurFile).Worksheets("A").Cells(1, 1).Value
sCurFile = Dir
DoEvents
Loop
End Sub