Results 1 to 2 of 2

Need to Consolidate multiple workbooks in to a Master Workbook w/ files on SharePoint

Threaded View

newbietoVBA Need to Consolidate multiple... 07-31-2012, 10:45 PM
JBeaucaire Re: Need to Consolidate... 07-31-2012, 11:30 PM
  1. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Need to Consolidate multiple workbooks in to a Master Workbook w/ files on SharePoint

    I have no way to test this at all, so it's a hope to get you close enough you can work out the rest. This macro goes IN the master workbook with all the sheets that match the name of the files on your Sharepoint, you'll need to edit the path to your Sharepoint files in the macro:
    Option Explicit
    
    Sub ImportFromSharePoint()
    Dim sharePATH As String, fNAME As String
    Dim wb As Workbook, ws As Worksheet
    
    sharePATH = "http://test:8080/PWA/Project Documents/"
    
    For Each ws In ThisWorkbook.Worksheets
        fNAME = sharePATH & ws.Name & ".xls"
        If Workbooks.CanCheckOut(fNAME) = True Then
            Workbooks.CheckOut fNAME
            Set wb = Workbooks.Open(fNAME, , False)
            wb.Sheets(ws.Name).UsedRange.Copy ws.Range("A" & Rows.Count).End(xlUp).Offset(1)
            If Workbooks(ws.Name).CanCheckIn = True Then Workbooks(ws.Name).CheckIn False
        Else
            MsgBox "Unable to check out the file '" & ws.Name & ".xls', moving on..."
        End If
    Next ws
    
    End Sub
    For now, the macro takes all the content on the opened sheet and copies it to the bottom of the matching sheetname.
    Last edited by JBeaucaire; 07-31-2012 at 11:33 PM.
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

Thread Information

Users Browsing this Thread

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

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