VBA Excel- How to select and open the latest added file in a folder

JoharahF

New Member
Joined
Dec 19, 2023
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
VBA excel-How to select and open the latest added file in a folder
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Is the "latest added file" another Excel workbook? Or do you just want to open up the most recent file within a folder.

This code should open the file with which has most recently been added to a directory.

You will need to add a button to your worksheet and link it to this macro.

VBA Code:
Sub OpenMostRecentFile()
    Dim folderPath As String
    Dim fileName As String
    Dim fileDate As Date
    Dim mostRecentDate As Date
    Dim mostRecentFile As String
    Dim file As Object
    
    ' Set the folder path
    folderPath = "C:\test\"
    
    ' Initialize variables
    mostRecentDate = DateSerial(1900, 1, 1)
    
    ' Check each file in the folder
    fileName = Dir(folderPath & "*.*")
    Do While fileName <> ""
        Set file = CreateObject("Scripting.FileSystemObject").GetFile(folderPath & fileName)
        fileDate = file.DateCreated
        
        ' Check if the file's creation date is more recent
        If fileDate > mostRecentDate Then
            mostRecentDate = fileDate
            mostRecentFile = fileName
        End If
        
        fileName = Dir
    Loop
    
    ' Open the most recent file
    If mostRecentFile <> "" Then
        Shell "explorer.exe " & folderPath & mostRecentFile, vbNormalFocus
    Else
        MsgBox "No files found in the folder.",
 vbExclamation
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,265
Messages
6,123,961
Members
449,135
Latest member
jcschafer209

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top