I have attempted to use the below VBA code to push updates from an Excel table that is linked to a SharePoint list.
Unfortunately, it seems that "UpdateChanges" is not longer an available method; thus, my question is: How do I push an update now? I have Google searched everything from "excel 2013 vba" update "sharepoint 2013" list to anything else that I could think of (including my title for this request), and I'm surprised to say that even recently updated forums only have answers that work with Excel 2010 (or in some cases earlier). Any help would be appreciated. Thank you for your time! Respectfully sent, gklewis83
Code:
Sub UpdateSPList() Dim ws As Worksheet Dim objListObj As ListObject Set ws = ThisWorkbook.Worksheets(1) Set objListObj = ws.ListObjects("MITSC_ProductList") objListObj.UpdateChanges xlListConflictDialog End Sub