+ Reply to Thread
Results 1 to 2 of 2

Zipping files between date range

Hybrid View

zeee91 Zipping files between date... 03-27-2019, 03:25 PM
alansidman Re: Zipping files between... 04-05-2019, 04:35 PM
  1. #1
    Registered User
    Join Date
    03-27-2019
    Location
    South carolina, US
    MS-Off Ver
    2013
    Posts
    1

    Zipping files between date range

    Hello, I need help. i am trying to get the user to input a date and zip files between the date range. Any assistance would be helpful. Thank you in advance for looking at it.

    Sub UserDate()
      Dim strDate As Date, endDate As Date, DateRange As String
      
      strDate = InputBox("Insert start date in format dd/mm/yy", "Start Date", Format(Now(), "dd/mm/yy"))
      endDate = InputBox("Insert end date in format dd/mm/yy", "End Date", Format(Now(), "dd/mm/yy"))
      DateRange = "[Date] BETWEEN #" & strDate & "# AND #" & endDate & "#"
      
      If IsDate(strDate) And IsDate(endDate) Then
        strDate = Format(CDate(strDate), "dd/mm/yy")
        endDate = Format(CDate(strDate), "dd/mm/yy")
        MsgBox "Date Range: " & strDate & "-" & endDate
        
      Else
        MsgBox "Wrong date format"
      End If
    End Sub
    
    
    Sub CreateZipFile(sPath As Variant, zipName As Variant)
    
    Dim ShellApp As Object
    Dim MyObj As Object, MySource As Object, file As Variant
    Dim sFile As String, sDate As String ', sPath As String
    
    'Call UserDate(strDate, endDate, DateRange)
     
     sDate = Year(Now()) & "-" & Month(Now()) & "-" & Day(Now())
     sPath = DLookup("FilePathName", "tblProperties", "[ID] = 1")
     'sFile = .Fields("CUSTOMER_NAME").Value & "Inv" & .Fields("INVOICE_NUMBER").Value & "_" & .Fields("VENDOR_NAME").Value & "_" & sDate & ".pdf"
     cusName = Left([sFile], Find("Inv") - 1) 'And Where invoice_date= DateRange
    
     zipName = cusName & sDate & ".zip"
     
     While (sPath <> "")
     If InStr(sPath, "") > 0 Then
     
    'Create an empty zip file
    Open zipName For Output As #1
    Print #1, Chr$(80) & Chr$(75) & Chr$(5) & Chr$(6) & String(18, 0)
    Close #1
     
     If cusName = .Fields("CUSTOMER_NAME").Value Then
     
    'Copy the files & folders into the zip file
    Set ShellApp = CreateObject("Shell.Application")
    ShellApp.Namespace(zipName).CopyHere ShellApp.Namespace(sPath).items
     
    'Zipping files
    On Error Resume Next
    Do Until ShellApp.Namespace(zippedInvoices).items.Count = ShellApp.Namespace(sPath).items.Count
        Application.Wait (Now + TimeValue("0:00:01"))
    
    Loop
    On Error GoTo 0
     
     MsgBox "Created zip" & zipName
     
     End If
         file = Dir
      Wend
    
    End Sub
    Last edited by alansidman; 04-05-2019 at 04:34 PM.

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,709

    Re: Zipping files between date range

    Administrative Note:

    Welcome to the forum.

    We would very much like to help you with your query, however you need to include code tags around your code.

    Please take a moment to add the tags. Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, and it also maintains VBA formatting.

    Click on Edit to open your thread, then highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here


    I have added them today, but in the future, you should be doing this.
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Open files within date range
    By originalJ in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-24-2016, 12:37 PM
  2. Zipping files using macro
    By Abbadon486 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-14-2015, 11:02 AM
  3. Zipping file from folder containing name
    By mduff3 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-29-2014, 04:43 AM
  4. Selecting files based on date range
    By FISMitch in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 10-04-2013, 01:35 PM
  5. Zipping files with protected sheets
    By LAF in forum Excel General
    Replies: 0
    Last Post: 09-14-2009, 12:02 PM
  6. Zipping a workbook with Mac.
    By mikerickson in forum Excel General
    Replies: 3
    Last Post: 04-25-2007, 10:38 AM
  7. [SOLVED] Zipping a file
    By Chris in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-21-2005, 12:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1