Results 1 to 30 of 30

collection monthly report for multiple files into one

Threaded View

  1. #13
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: collection monthly report for multiple files into one

    Here's another option...
    Change Path to Path housing files...
    Sub J3v16()
    Dim Temp, Dict As Object, File As Object, Path As String, TabName As String, i As Long
    Set Dict = CreateObject("Scripting.Dictionary"): Path = "E:\Steven\Desktop\Test\"
    With CreateObject("Scripting.FileSystemObject")
        For Each File In .GetFolder(Path).Files
            TabName = .GetBaseName(File)
            With Workbooks.Open(File)
                With .ActiveSheet.Range("A3:D" & .ActiveSheet.Cells(.ActiveSheet.Rows.Count, 4).End(xlUp).Row)
                    Temp = Application.Index(.Value, Application.Evaluate("Row(1:" & .Rows.Count & ")"), Array(4, 3, 2, 1))
                End With
                .Close False
            End With
            With Sheets.Add
                .Name = Split(TabName, ".")(0)
                With .Range("A1").Resize(UBound(Temp, 1), 4)
                    .Value = Temp
                    FormatMe .CurrentRegion
                End With
            End With
            For i = 2 To UBound(Temp)
                If Not Dict.exists(Temp(i, 2)) Then
                    Dict.Add Temp(i, 2), Temp(i, 3) & ";" & IIf(Temp(i, 4) = "", 0, Temp(i, 4))
                Else
                    Dict(Temp(i, 2)) = Split(Dict(Temp(i, 2)), ";")(0) + Temp(i, 3) & ";" & Split(Dict(Temp(i, 2)), ";")(1) + Temp(i, 4)
                End If
            Next i
        Next File
    End With
    With Sheets("Year")
        .Activate
        .UsedRange.Delete
        .Range("A1").Resize(, 4) = Array("SN", "ITEM", "SALES", "RETURNS")
        .Range("B2").Resize(Dict.Count, 2) = Application.Transpose(Array(Dict.keys, Dict.items))
        .Range("C2").Resize(Dict.Count).TextToColumns .Range("C2"), xlDelimited, semicolon:=True
        With .Range("A2").Resize(Dict.Count): .Value = Evaluate("=Row(" & .Address & ")-1"): End With
        With .Range("A1:D1").Resize(Dict.Count + 1): FormatMe .CurrentRegion: End With
    End With
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Summing categories from multiple table and creating an monthly report
    By Coouge in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 09-19-2019, 11:55 PM
  2. How to extratc data as weekly report and monthly report
    By Nisar.mohammed in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 12-23-2014, 11:19 AM
  3. Monthly, Bi-monthly, Quarterly, Yearly Report Tracking Help
    By eugene_lys in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-26-2014, 11:08 PM
  4. Replies: 1
    Last Post: 08-15-2013, 02:15 PM
  5. How to collect daily report from spread sheet and accumulate for monthly report
    By yshguru in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-22-2013, 05:17 PM
  6. Macro for perfoming same data manipulation to monthly files to create a report
    By newbieexcelgirl in forum Excel Programming / VBA / Macros
    Replies: 12
    Last Post: 11-22-2012, 09:38 AM
  7. Replies: 2
    Last Post: 06-12-2006, 12:55 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