Results 1 to 2 of 2

VBA to save excel workbook to a Sharepoint site

Threaded View

VBA learner ITG VBA to save excel workbook to... 05-25-2017, 09:03 AM
alansidman Re: VBA to save excel... 05-25-2017, 09:46 AM
  1. #1
    Registered User
    Join Date
    05-25-2017
    Location
    manchester, England
    MS-Off Ver
    365 Mac
    Posts
    8

    VBA to save excel workbook to a Sharepoint site

    Thank you for reading my post.

    I was wondering if anyone could advise me or point me in the right direction on the below issue I am having.

    I have the below VBA code to create a new project Tab within the project document which is saved on my Mac desktop. However I am looking for a piece of VBA code that will allow me to save a copy of the new tab as a new workbook thats created to a Sharepoint site with the same worksheet name thats created.


    IS it at all possible as i'm using Office 365 for Mac.

    Sub Copy_paste_tab()
    
    
    Range("D5").Select
    ExecuteExcel4Macro _
    "FORMULA.REPLACE("" "",""_"",2,1,TRUE,FALSE,,FALSE,FALSE,FALSE,FALSE)"
    Cells.Find(What:=" ", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
    xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False) _
    .Activate
    
    
    Range("A1").Select
    
    
    Dim ws As Worksheet
    Set wh = Worksheets(ActiveSheet.Name)
    ActiveSheet.Copy After:=Worksheets(Sheets.Count)
    If wh.Range("D5").Value <> "" Then
    ActiveSheet.Name = wh.Range("D5").Value
    EndIf
    wh.Activate
    
    
    EndSub
    Last edited by alansidman; 05-25-2017 at 09:46 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Saving excel from SharePoint site
    By AbhijeetBallal in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-08-2013, 12:55 PM
  2. Save workbook on a sharepoint site using vba
    By jonathan12 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-28-2013, 01:52 PM
  3. Running macro in Excel file saved on SharePoint site?
    By tforan in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-08-2013, 12:19 PM
  4. Importing an excel sheet that's on a sharepoint site to an access database
    By sonofearth in forum Access Tables & Databases
    Replies: 1
    Last Post: 05-28-2012, 06:42 AM
  5. Replies: 0
    Last Post: 05-28-2012, 06:06 AM
  6. Access to Excel-files on Sharepoint site
    By jaap85 in forum Excel General
    Replies: 3
    Last Post: 02-27-2012, 11:12 AM
  7. Save a workbook to an FTP site?
    By martyn007 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-15-2010, 04:06 AM

Tags for this Thread

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