Push data from Excel 2013 table to linked SharePoint 2013 list using VBA.

gklewis83

New Member
Joined
Jan 27, 2017
Messages
6
I have attempted to use the below VBA code to push updates from an Excel table that is linked to a SharePoint list.
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
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
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule #13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.

Just post the link right in your thread/question.
 
Upvote 0

Forum statistics

Threads
1,215,331
Messages
6,124,312
Members
449,152
Latest member
PressEscape

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top