Reputation: 303
My worry is that all users may need to have MS Access installed on their PCs in order to refresh the tables. Do any of the connections (OLEDB, ODBC, etc.) resolve this issue?
Upvotes: 0
Views: 318
Reputation: 107587
The JET/ACE engine that underlies Access databases is a Windows component and comes installed on every PC. So you could create applications that use accdb and mdb files as data sources and use the corresponding installed OLEDB Providers or ODBC DSNs.
With that said, Excel is not a multiple user program. Hence, other users will get read-only status, unable to modify the spreadsheet.
One option you can explore is to have users download the free Access Runtime available in 2007/2010/2013 versions. Then, build an Access accdb file with user navigated forms that replicate the Excel table layout which really is just opening queries to screen. So really no need for Excel unless you run formulas, graphs, charts, and other analytics.
Upvotes: 1