Morning,

Not sure if any one can help on this one! not even too sure if it is
possible in VBA!
I need to search through the contents of a folder full of text files,
and look for a specific word in each file and if the word is found then
various data needs to be extracted from that file.

I was thinking of using the filesystem object for looping through the
files inn the folder i.e the following code that I found will cover
this bit

Dim aryFiles
Dim oFSO

Sub LoopFolders()
Dim i As Integer

Set oFSO =3D CreateObject("Scripting.FileSystemObject")
selectFiles "c:\MyTest"
Set oFSO =3D Nothing

End Sub

'--------------------------------------------------------------------------=
=AD-

Sub selectFiles(sPath)
'--------------------------------------------------------------------------=
=AD-

Dim Folder As Object
Dim Files As Object
Dim file As Object
Dim fldr

Set Folder =3D oFSO.GetFolder(sPath)

For Each fldr In Folder.Subfolders
selectFiles fldr.Path
Next fldr

For Each file In Folder.Files
If file.Type =3D "Microsoft Excel Worksheet" Then
Workbooks.Open Filename:=3Dfile.Path
'>>>>>>>>> your macro here
Activeworkbook.Save
Activeworkbook.Close
End If
Next file

End Sub

HOW DO I SEARCH TEXT FILES FOR A SPECIFIC WORD?....AND THEN EXTRACT
SPECIFIC INFORMATION (ONLY THING IN MY FAVOUR FOR THE EXTRACTION IS
THAT ALL THE TEXT FILES ARE THE SAME LAYOUT)

Any help greatly appreciated

Regards
Jason