Need Macro Code

myakymiv

New Member
Joined
Dec 20, 2018
Messages
8
I need a macro to combine a bunch of excel files into one file. i want something that when i am ready to combine the file it prompts me to pick a folder and whatever is in that folder gets placed into one combined excel sheet

Thanks in advance
 

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.
are all of the files you are wanting to combine the first sheet in the workbook?
 
Upvote 0
Yes they are, and they are all in one folder as well


Code:
Sub getResult()
Dim ary1 As Variant
Dim wfile As String, wdiag As Long, wpath As String, wbook As String
Dim i As Integer
Dim wb As Workbook
Dim awb As Workbook
Dim aws As Worksheet

Set awb = ThisWorkbook
Set aws = ActiveSheet

With Application.FileDialog(msoFileDialogFilePicker)
    .AllowMultiSelect = True
    .Filters.Clear
    .Filters.Add "Excel Files", "*.xls*"

    If .Show = True Then
        For i = 1 To .SelectedItems.Count
            Workbooks.Open .SelectedItems(i)
        Next i
    End If
    
End With

For Each wb In Application.Workbooks
  If wb.Name <> "PERSONAL.xlsb" And wb.Name <> awb.Name Then
      wb.Worksheets(1).Range("A1") = Date
            ary1 = wb.Worksheets(1).Range("A1").CurrentRegion.Value2
            wb.Close False
    End If
Next wb

aws.Range("A1").Resize(UBound(ary1), UBound(ary1, 2)).Value = ary1

End Sub

i don't know how to multi select everything in a folder, but this will allow you to highlight everything in a folder
some notes:

1. you must save whatever file this macro is as an xlsm
2. it must be run as the only open workbook
3. it will only show "xls" files you can change that as needed on the .Filters.Add "Excel Files", "*.xls*" line

let me know if that works for you
 
Last edited:
Upvote 0
I am getting this error, its saying something is wrong with this

aws.Range("B4").Resize(UBound(ary1)).Value = ary1


Code:
Sub getResult()
Dim ary1 As Variant
Dim wfile As String, wdiag As Long, wpath As String, wbook As String
Dim i As Integer
Dim wb As Workbook
Dim awb As Workbook
Dim aws As Worksheet

Set awb = ThisWorkbook
Set aws = ActiveSheet

With Application.FileDialog(msoFileDialogFilePicker)
    .AllowMultiSelect = True
    .Filters.Clear
    .Filters.Add "Excel Files", "*.xls*"

    If .Show = True Then
        For i = 1 To .SelectedItems.Count
            Workbooks.Open .SelectedItems(i)
        Next i
    End If
    
End With

For Each wb In Application.Workbooks
  If wb.Name <> "PERSONAL.xlsb" And wb.Name <> awb.Name Then
      wb.Worksheets(1).Range("A1") = Date
            ary1 = wb.Worksheets(1).Range("A1").CurrentRegion.Value2
            wb.Close False
    End If
Next wb

aws.Range("A1").Resize(UBound(ary1), UBound(ary1, 2)).Value = ary1

End Sub

i don't know how to multi select everything in a folder, but this will allow you to highlight everything in a folder
some notes:

1. you must save whatever file this macro is as an xlsm
2. it must be run as the only open workbook
3. it will only show "xls" files you can change that as needed on the .Filters.Add "Excel Files", "*.xls*" line

let me know if that works for you
 
Upvote 0
I don't see that line of code in the example. The example assumes that your data starts at A1 and is in a matrix. This means 2 dimensions. Your code line is one dimension on left side of the equation. Since you did not post other code or link to a sample file, I don't know the dimensions of ary1.

You can paste a link to a simple example file from a site like dropbox.

The example needs some tweaks to get all data. I would have shown how to do it if you had answered my question.
 
Upvote 0
I am getting this error, its saying something is wrong with this

i edited my post check that line again see if that does not work
you are also changing the range of where it is pasting the array, why is that?
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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