vba import *.xls with todays date

Pinaceous

Well-known Member
Joined
Jun 11, 2014
Messages
1,113
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I'm importing a xls file into an xlsm file.

This xls file is created each day onto a workers desk top.

My question is, is there a sub that I can provide to first check if the xls file has todays date in the 'Date modified' string before my other sub begins the import?

Does anyone have a sub that can check if the importing file has todays date?

Please let me know if you do.

Thank you!
pinaceous
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Just to follow up post here, with this type of problem


I'm can use this sub to check the 'Date modified' string:

Code:
Sub test()
    Const strFullName As String = "C:\Users\Desktop\Test.xlsx"

    
    If FileExists(strFullName) Then
        MsgBox FileLastModified(strFullName)
    Else
        MsgBox "Cannot find the file : " & vbNewLine & strFullName
    End If
    
End Sub
 
Private Function FileExists(fName) As Boolean
    Dim x As String
    x = Dir(fName)
    If x <> "" Then FileExists = True _
        Else FileExists = False
End Function
 
Function FileLastModified(strFullFileName As String)
    Dim fs As Object, f As Object, s As String
     
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set f = fs.GetFile(strFullFileName)
     
    s = UCase(strFullFileName) & vbCrLf
    s = s & "Last Modified: " & f.DateLastModified
    FileLastModified = s
     
    Set fs = Nothing: Set f = Nothing
     
End Function

But how do I modify/add to this sub if todays date
Code:
 FileLastModified(strFullName)
Then Msgbox "Todays Date"

Thanks,
Paul
 
Last edited:
Upvote 0
The whole thing can be just:
Code:
Sub test()
    
    Const strFullName As String = "C:\Users\Desktop\Test.xlsx"
    
    strFullName = ThisWorkbook.FullName
    
    If Dir(strFullName) <> vbNullString Then
        If Int(FileDateTime(strFullName)) = Date Then
            MsgBox strFullName & " was modified today"
        End If
    Else
        MsgBox strFullName & " doesn't exist"
    End If
    
End Sub
 
Upvote 0
The whole thing can be just:
Code:
Sub test()
    
    Const strFullName As String = "C:\Users\Desktop\Test.xlsx"
    
    strFullName = ThisWorkbook.FullName
    
    If Dir(strFullName) <> vbNullString Then
        If Int(FileDateTime(strFullName)) = Date Then
            MsgBox strFullName & " was modified today"
        End If
    Else
        MsgBox strFullName & " doesn't exist"
    End If
    
End Sub

Thanks John_w!

Can this code be applied without the
Code:
Const strFullName As String = "C:\Users\Desktop\Test.xlsx"
??


Many thanks,
Paul
 
Upvote 0
Thanks John_w!

Can this code be applied without the
Code:
Const strFullName As String = "C:\Users\Desktop\Test.xlsx"
??


Many thanks,
Paul
The file name has to be specified or supplied somewhere. (NB I left the ThisWorkbook line in whilst testing and it should be deleted.)

I'm not sure what you're asking for as the code you posted is different to the thread title. If you want multiple .xls files, use a Dir function loop with the FileDateTime check inside it. There should be example code on the forum.
 
Upvote 0
Hi John_w,

We are good. I'm not looking for a Dir function low with the FileDateTime check inside it but I do have a question about your supplied code.

How would I create/add to the situation whereby if the file exist but does not equal today's date situation.


For example like ...

Code:
If Int(FileDateTime(strFullName)) =/= Date Then
            MsgBox strFullName & " WAS NOT modified today"
        End If


How would I supply this condition into your code?

Many thanks,
Paul
 
Upvote 0
Oh wait, John_w I got it:

Code:
If Not Int(FileDateTime(strFullName)) = Date Then
            
            MsgBox strFullName & " was not modified today"
            
        End If


Sorry about that.

But actually above in Post#6, when I asked about the
Const strFullName As String
, is there a way for the sub to use something like:
Code:
strPath = wbA.Path
If strPath = "" Then
  strPath = Application.DefaultFilePath
End If
strPath = strPath & "\"

Whereby, it will search where the file already exist?

Thanks,
Paul

PS Provided that the File Name is constant?
 
Last edited:
Upvote 0
I'm not sure what your last code is meant to show.

Maybe this - the code looks for the file name "Test.xlsx" in the same folder as the macro workbook.

Code:
Public Sub test2()
    
    Dim strFullName As String
    
    strFullName = ThisWorkbook.Path & "\Test.xlsx"
    
    If Dir(strFullName) <> vbNullString Then
        If Int(FileDateTime(strFullName)) = Date Then
            MsgBox strFullName & " was modified today"
        Else
            MsgBox strFullName & " was not modified today"
        End If
    Else
        MsgBox strFullName & " doesn't exist"
    End If
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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