Select Excel File from Sharepoint site

Sinem

Board Regular
Joined
Nov 8, 2015
Messages
63
I'm trying to select an Excel file from SharePoint using VBA. Because the file I'm looking for might be different each time I run the macro, I want to be able to view the SharePoint folder and select the file I need.
The code below works fine when I want to look for a file on a network drive, but it does not select the file with the button "OK". It just fills the dataname space with the selected file name and does not take / saves it.
By the way, opening works fine. Opening and extracting the name works but directly picking the file does not work.
Here is the code:


Code:
Set foDialog = Application.FileDialog(msoFileDialogFilePicker)
With foDialog    
.Title = "Select " + fsFilePathArt + "-File "    
.AllowMultiSelect = False    
.InitialFileName = "Z:\Input_Data" +"\"   
 .InitialView = msoFileDialogViewDetails   
 If .Show = -1 Then        
fsFullFileName = .SelectedItems(1) 
Else       
fsFullFileName = ""   
End IfEnd With
 
Last edited:

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,213,538
Messages
6,114,218
Members
448,554
Latest member
Gleisner2

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