I would like to ask you, if there is any way where I can query an Access Database, which is stored on SharePoint, using Excel Vba code and without using the "Get Data" functionality in the Excel.
In other words, how I can connect my excel spreadsheet to the access database on SharePoint Online using ADODB or DAO etc.
Thank you in advance.
Related
how to query from web to excel with power query. I tried but no table appears in power query is there an error or there is another solution with vba or else.
Thanks
You don't see any table because you didn't provide any credentials and Excel isn't logged into your account.
is it possible to make a connection between Office 365 to SQL database using Office scripts? something simillar to ADODB.Connection in Excel VBA
You can't connect directly to a database using Office Scripts. You can still get data from a database but the process would need to be a bit different:
Instead of querying a database directly, the data would need to be returned to some API (e.g. as JSON)
Instead of providing a username / password to connect to the database, you'd use an API key.
Once you had access to an API and provided an API key, you could use fetch to get the JSON and work with the data in Office Scripts.
You can read more about using fetch with Office Scripts here
In addition to this type of process, you could also trying using something like PowerAutomate to query the database directly.
Does anyone know if it is possible to pull data from an Office 365 Excel online sheet for use on a web page.
Essentially what I'm looking for is a Microsoft version of the Google Sheets API: https://developers.google.com/sheets/api/quickstart/js - unfortunately I'm not able to use Google sheets due to the project being located in China (where Google services are blocked).
Does anyone know if this exists?
There is Mic.rosoft Graph API and probably more suitable to your needs Excel Rest API
I have to create a multi user application, in which as per the parameters provided by user a report will be published in excel format. I need some help in figuring out that whether an integration of excel, ms access and sharepoint is possible? Something like - I can keep all my data in ms access and put an excel in sharepoint so that all the user can use it. Parameters selected by users will go and fetch data in ms access and then publish data and on the basis of that pivots will also be created.
Kindly let me know if something like this possbile and if it then what all steps i have to follow and what can be the challenges
Thanks
I want submit Data/update/delete through InfoPath Form to an MS Access Database on Sharepoint 2007 (MOSS 2007), If custome code require please give code.
Thanks
I would consider setting up a data connection within InfoPath to submit the form data to a SharePoint document library. Then you could can link your Access Database to that same doc lib. No code needed!