On Error Resume Next
Set sht = Worksheets("Test")
If sht Is Nothing Then Worksheets.Add:ActiveSheet.Name = "Test"
On Error Goto 0
With Application.FileSearch
.NewSearch
.LookIn = ThisWorkbook.Path & "\Core Files\Employee Journals"
.SearchSubFolders = False
.Filename = OpenedFile
.MatchTextExactly = True
.FileType = msoFileTypeExcelWorkbooks
If .Execute() = 1 Then