Export excel file to sharepoint folder (1 Viewer)

tucker61

Registered User.
Local time
Yesterday, 16:27
Joined
Jan 13, 2008
Messages
321
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, 16:27
Joined
Jun 22, 2017
Messages
154
...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
 

Users who are viewing this thread

Top Bottom