This function checks in the document to SharePoint.
Syntax
Parameters
Return Value
Function Application.SharePointCheckIn( _
Document As Object, _
Comment As String) As Boolean
Document [in]
Type: Object
Comment [in]
Type: String
Boolean
SVB Example
Checking in a document to SharePoint:
Option Base 1
Option Explicit
Sub Main
Dim ss As Spreadsheet
Set ss = Application.Spreadsheets.Open(Application.Path & "\Examples\Datasets\Adstudy.sta",False)
Application.SharePointCheckIn(ss, "Test")
End Sub