VBA: Como abrir os dois arquivos mais recentes do Excel na pasta

Eu estou tentando abrir o arquivo mais recente de dois excel na pasta até agora eu abri o arquivo mais recente na pasta, mas eu tenho que abrir o segundo arquivo mais recente na pasta. consulte o código abaixo. sugira como abrir o 2º arquivo mais recente?

Sub findingdiff()
Dim FileSys, objFile, myFolder, c As Object
Dim wb1 As Workbook
Dim wb2 As Workbook
  FolderName = ("C:\Users\ashokkumar.d\Desktop\Test\do\")
                Set FileSys = CreateObject("Scripting.FileSystemObject")
                Set myFolder = FileSys.GetFolder(FolderName)

        dteFile = DateSerial(1900, 1, 1)
        For Each objFile In myFolder.Files
     ,       If InStr(1, objFile.Name, ".xls") > 0 Then
                If objFile.DateLastModified > dteFile Then
                    dteFile = objFile.DateLastModified
                    strFilename = objFile.Name
                End If
            End If
        Next objFile
'opening of latest file in the folder

                Set wb2 = Workbooks.Open(FolderName & Application.PathSeparator & strFilename)

End Sub

questionAnswers(2)

yourAnswerToTheQuestion