T tucker61 Registered User. Local time Yesterday, 17:47 Joined Jan 13, 2008 Messages 344 Sep 7, 2017 #1 I currently exportbreports yo excell and then distribute to our team, I want to run a macro to export the data into a SharePoint folder. How easy is this to do ? Regards Sent from my SM-T715 using Tapatalk
I currently exportbreports yo excell and then distribute to our team, I want to run a macro to export the data into a SharePoint folder. How easy is this to do ? Regards Sent from my SM-T715 using Tapatalk
ashleedawg "Here for a good time" Local time Yesterday, 17:47 Joined Jun 22, 2017 Messages 154 Sep 8, 2017 #2 ...to export data from Access to Sharepoint? Here is an example using docmd.TransferDatabase from MSDN : Code: DoCmd.TransferDatabase transfertype:=acExport, databasetype:="WSS", _ databasename:="[I]http://example/WSSSite[/I]", _ objecttype:=acTable, Source:="Customers", _ Destination:="Customer List", structureonly:=False
...to export data from Access to Sharepoint? Here is an example using docmd.TransferDatabase from MSDN : Code: DoCmd.TransferDatabase transfertype:=acExport, databasetype:="WSS", _ databasename:="[I]http://example/WSSSite[/I]", _ objecttype:=acTable, Source:="Customers", _ Destination:="Customer List", structureonly:=False