Through a little trial and error I got the following to work:
Sub getaccdata()
Dim rng, mach As Integer
Dim file, fname, src As String
Dim i As Integer
Dim a220, a003, blah, a229, a22a As String
Dim dir As String
Dim wbk As String
Application.DisplayAlerts = False
wbk = ActiveWorkbook.Name
rng = Range("a2:a" & Range("a2").End(xlDown).Row).Rows.Count + 1
'begin looping through file names
For i = 2 To rng
file = Cells(i, 1).Value
Cells(i, 1).Select
src = file & "_acc.txt"
'begin looping through directories
mach = 1
dir = "C:\Documents and Settings\jwilds1\Desktop\acc data\" & mach & "\"
fname = dir & file & "_acc.txt"
If fileexists(fname) Then
Workbooks.OpenText Filename:=fname, origin:=xlWindows
Else
mach = 2
dir = "C:\Documents and Settings\jwilds1\Desktop\acc data\" & mach & "\"
fname = dir & file & "_acc.txt"
If fileexists(fname) Then
Workbooks.OpenText Filename:=fname, origin:=xlWindows
Else
mach = 3
dir = "C:\Documents and Settings\jwilds1\Desktop\acc data\" & mach & "\"
fname = dir & file & "_acc.txt"
Workbooks.OpenText Filename:=fname, origin:=xlWindows
End If
End If
'insert copy & paste
Workbooks(wbk).ActiveSheet.Cells(i, 9).Value = mach
Workbooks(wbk).ActiveSheet.Cells(i, 10).Value = Cells(1, 1).Value
Cells.Find(What:="ACC Overall", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Select
a220 = ActiveCell.Offset(1, 0).Value
a003 = ActiveCell.Offset(2, 0).Value
blah = ActiveCell.Offset(3, 0).Value
a229 = ActiveCell.Offset(4, 0).Value
a22a = ActiveCell.Offset(5, 0).Value
Workbooks(wbk).ActiveSheet.Cells(i, 11).Value = a220
Workbooks(wbk).ActiveSheet.Cells(i, 12).Value = a003
Workbooks(wbk).ActiveSheet.Cells(i, 13).Value = blah
Workbooks(wbk).ActiveSheet.Cells(i, 14).Value = a229
Workbooks(wbk).ActiveSheet.Cells(i, 15).Value = a22a
Workbooks(src).Close savechanges:=False
mach = 1
Next i
Application.DisplayAlerts = True
End Sub
Public Function fileexists(fullfilename) As Boolean
fileexists = (dir(fullfilename) > "")
End Function
It's unelegant (is that a word?), but it works. Thanks!!!
Bookmarks