Hello,
I need a to loop through all excel files in a specified folder and copy the last column of data to a destination worksheet. Can someone please help me with the code for this, i do not even know where to start.
Thanks
Hello,
I need a to loop through all excel files in a specified folder and copy the last column of data to a destination worksheet. Can someone please help me with the code for this, i do not even know where to start.
Thanks
hi, gsurge, attach couple of sample files and result file.
i cannot really do that, but its a straight forward worksheet. do you have a sample code I could work from?
why not to use search?
example: http://support.microsoft.com/kb/139724
here is my code
![]()
Sub datacollect() Dim C As Long Dim DstWks1 As Worksheet Dim DstWks2 As Worksheet Dim LastRow As Long Dim R As Long Dim SrcWkb As Workbook Dim StartRow As Long Dim wkbname As Variant Dim xlsFiles As Variant 'Starting column and row for the destination workbook C = 1 R = 1 'Set references to destination workbook worksheet objects Set DstWks1 = ThisWorkbook.Worksheets("Formdata") 'Starting row on source worksheet StartRow = 11 'Get the workbooks to open xlsFiles = Application.GetOpenFilename(FileFilter:="Excel files (*.xls), *.xls", MultiSelect:=True) Application.AskToUpdateLinks = False If VarType(xlsFiles) = vbBoolean Then Exit Sub 'Loop through each workbook and copy the data to this workbook For Each wkbname In xlsFiles Set SrcWkb = Workbooks.Open(Filename:=wkbname, ReadOnly:=True) LastRow = SrcWkb.Worksheets("Data").Cells(Rows.Count, "BG").End(xlUp).Row If LastRow >= StartRow Then With SrcWkb.Worksheets("Data") DstWks1.Cells(R, C).Resize(LastRow - StartRow + 1, 1).Value = _ .Range(.Cells(StartRow, "BG"), .Cells(LastRow, "BG")).Value End With End If C = C + 1 SrcWkb.Close savechanges:=False Next wkbname End Sub
Instead of column BG, i would like the last used column
Last edited by Leith Ross; 05-26-2011 at 12:02 PM. Reason: Added Code Tags
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks