Open the Current Directory (on SharePoint)

ermccarthy

Board Regular
Joined
Feb 15, 2002
Messages
224
Good Day!

I have a workbook that I have put in the below VBA. In theory, it is a simple and straight forward module..open workbook, copy from it, paste into another workbook, close workbook... I am trying to make this as end-user friendly as possible, as not all of my users are not technically inclined.

I can not get the ChDir to work properly. I would like the OpenFilename box to open to the same directory that the current open file sits in. By way of example, if the current file is in C:/Documents, then I would like the OpenFilename box to open to that same directory.

Now just because I need to make this more tricky.....the directory that both files will be sitting in is a SharePoint directory.

Any Ideas??

<code>
Sub GrabData()
'
' GrabData Macro
'
Dim wbThis As Workbook
Dim wbOpen As Workbook
Dim strFileName
myDir = CurDir()
Set wbThis = ThisWorkbook
ChDir myDir
strFileName = Application.GetOpenFilename
If TypeName(strFileName) <> "Boolean" Then
Workbooks.OpenText strFileName
Set wbOpen = ActiveWorkbook
End If
wbOpen.Sheets("Flow").Range("A1:G41").Copy

wbThis.Sheets("Flow").Range("A1:G41").PasteSpecial xlPasteValues
wbOpen.Activate
Application.CutCopyMode = False
ActiveWindow.Close
Sheets("Flow").Select

End Sub</code>
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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