This function checks in the document to SharePoint.
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