How can we upload document to sharepoint using VBA

Narayan Singh 10 Reputation points
2023-04-25T03:44:24.3233333+00:00

how can i upload my documents or outlook email to SharePoint document library using vba

Microsoft 365 and Office SharePoint For business Windows
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Xyza Xue_MSFT 30,176 Reputation points Microsoft External Staff
    2023-04-25T07:23:11.32+00:00

    Hi @Narayan Singh

    VBA is not supported in the Microsoft Q&A community, so I can't give you professional help.

    I found a case related to upload document to sharepoint using VBA for you, which may be helpful to you, please check:

    https://stackoverflow.com/questions/58439294/upload-file-to-sharepoint-through-vba

    
    Sub UploadToSharepoint()
    
        Dim SharepointAddress As String
        Dim LocalAddress As String
        Dim FS As Object
    
        SharepointAddress = "\\share.deere.com\teams\sm_at_sd\uppcaptracking\Test"
    
        LocalAddress = "c:\blah\blah2\MyWorkFiletoCopy.xlsx"
    
        Set FS = CreateObject("Scripting.FileSystemObject")
    
        If FS.FileExists(LocalAddress) Then
            FS.CopyFile LocalAddress, SharepointAddress
        End If
    
    End Sub
    
    

    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.