Save Copy of Current Workbook to Sharepoint from Excel

duplaly

New Member
Joined
May 26, 2020
Messages
9
Office Version
  1. 2019
Hi
Could you tell me how to write the vba code to save a copy of the active workbook in sharepoint with the date and keep the active workbook open. A kind of archiving!

I have this work around that I see on the internet that doesn't seem to be final.

Thanks for any help and have a nice day!

Code:
Sub SharePoint_Save()

    Dim acctCode As String
    Dim mainpath As String
    Dim filePath As String
    Dim savefile As String
    Dim thiswbpath As String
    Dim wb As Variant

    ThisWorkbook.Save
    thiswbpath = ThisWorkbook.FullName

    acctCode= v_Welcome.Range("D5")
    mainpath = "https://companyname.sharepoint.com/sites/GROUPA/Shared Documents/General/Auto Save/Full Template/"

    savefile = mainpath & acctCode & " FullTemplate auto-saved"

    Application.DisplayAlerts = False
    ActiveWorkbook.SaveAs FileName:=savefile, FileFormat:=52
    Application.DisplayAlerts = True

    Set wb = Workbooks.Open(thiswbpath)

    ThisWorkbook.Close False

End Sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi duplaly. Trial using SaveCopyAs instead of SaveAs. Also, I'm not following along with your last 2 lines of code. Open the wb that's already open and then close it? HTH. Dave
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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