Pull Data from Another Workbook

helpexcel

Well-known Member
Joined
Oct 21, 2009
Messages
656
I'd like to pull data from another workbook. I'd like to open the folder that's named in A2. The user would then find the workbook and open it. I can populate the code for copying, but then i would want the workbook to close. Is opening and closing the workbook the quickest way to pull data?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Without knowing exactly what you are trying to do this is a method to adapt to your needs
VBA below assumes the path is specified in cell A2 ( C:\folder\subfolder\subsubfolder )
Amend sheet name SheetXXX

Code:
Sub Test_GetValues()
    Dim fPath As String, fOpen As Variant, wb As Workbook, rng1 As Range, rng2 As Range
    fPath = Sheets("[COLOR=#ff0000]SheetXXX[/COLOR]").Range("A2")
[I][COLOR=#006400]'specify default drive and folder for GetOpenFilename[/COLOR][/I]
    ChDrive Left(fPath, 1)
    ChDir fPath
[I][COLOR=#006400]'get workbook[/COLOR][/I]
    fOpen = Application.GetOpenFilename("Excel Files (*.xls*), *.xls*")
    If fOpen <> False Then Set wb = Workbooks.Open(fOpen) Else GoTo handling
[COLOR=#006400][I]'get ranges[/I][/COLOR]
    With Application
        Set rng1 = .InputBox("Select range to pull", "Get data", , , , , , 8)
        ThisWorkbook.Activate
        Set rng2 = .InputBox("Select paste cell", "Paste where", , , , , , 8)
    End With
[COLOR=#006400][I]'copy\paste values & formats[/I][/COLOR]
    rng1.Copy
    rng2.PasteSpecial (xlPasteFormulasAndNumberFormats)
    rng2.PasteSpecial (xlPasteValues)
    wb.Close False                                                              [I][COLOR=#006400]'close without saving[/COLOR][/I]
Exit Sub

handling:
    MsgBox "nothing selected"
End Sub
 
Last edited:
Upvote 0
thanks! how do i hard code part of the path and then fill it with A5. so \\Server\Folder1\Folder2\Folder3\Range("A5")
 
Upvote 0
instead of ...
Code:
fPath = Sheets("SheetXXX").Range("A2")
build the required string like this ...
Code:
fPath = [COLOR=#ff0000]"K:\Folder\Subfolder\SubSubFolder\" & [/COLOR]Sheets("SheetXXX").Range("A2")
 
Last edited:
Upvote 0
Is this trying to open a specific file? I'm looking to just open a specific folder and then let the user choose the file. Sorry for any confusion.
 
Upvote 0
It does exactly what you requested

Your filepath is the problem and I cannot help you with that
My code is looking for this type of path C:\folder\subfolder\subsubfolder
And you are trying to use \\Server\Folder1\Folder2\Folder3

You could begin a new thread to resolve that issue and then my code will work
 
Upvote 0
I'm getting a run time error 5 - Invalid call or procedure on this line: ChDrive Left(fPath, 1)
 
Upvote 0
what is the value of fPath?
the code is looking for a drive letter
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,022
Members
448,939
Latest member
Leon Leenders

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