Thank you Neil that was a lot of help.
Does "xlApp" have specific code you need to use?
I am getting an "expected statement error" with the additional code I tried to use.
Const Overwrite = True
strSource = "f:\a\axys3\users\brandon\test.txt"
strDest = "C:\Users\btoney\Desktop\IMRF\test.txt"
Set oFSO = CreateObject("Scripting.FileSystemObject")
oFSO.CopyFile strSource, strDest , Overwrite
set xlApp = CreateObject("Excel.Application")
xlApp.visible = TRUE
xlApp.Workbooks.Open strDest
set wb = XlApp.Workbooks(1)
wb.Activesheet.Cells.Replace What:="causcash", Replacement:="USD Curncy", LookAt:=xlPart _
, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Bookmarks