Here's how to connect Excel to the AT:
- Download and install the ODBC driver for MySQL here: http://dev.mysql.com/downloads/connector/odbc/3.51.html.
- Configure the ODBC Data Source (Control Panel > Administrative Tools > Data Sources (ODBC) > Add >MySQL ODBC 3.51 Driver)
- Enter your AT database connection settings
- Open Excel
- Click on Data >From Other Sources > From Data Conenction Wizard > ODBC DSN > [the database/connection you just set-up in step 3]
- Select what you want to import
Voila! It's as easy as that.
Right now we're working on constructing more complicated MySQL queries typically used for end-of-year analysis and reporting, which we will then similarly connect to Excel to allow our staff to manipulate the data as needed. Here is where a little MySQL knowledge goes a long ways!In the end, we thought this was a much more efficient and effective means for providing our staff with customizable reporting functionality from the AT. For one, our staff are more comfortable with and regular uses of Excel. Second, there is much more documentation and training options available for using Excel and its many advanced features.
UPDATE (6/23/2010)
We ran into a bit of a dead end trying to connect custom MySQL queries to Excel. It was easy enough to connect the tables, but connecting to custom queries proved troublesome. Instead, we are now using SharePoint, which does allow you to create custom SQL queries and stored procedures. If interested, more information on how to set this up can be found here: http://office.microsoft.com/en-ca/sharepoint-designer-help/add-a-database-as-a-data-source-HA010100908.aspx#BM6.
I'm curious about your comment that "with a little know-how, you can even use Excel for batch updates." It sounds like you are manipulating the database directly from Excel?
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteAlthough technically possible, I'm not sure if you would want to update or alter data in the AT's MySQL database directly from Excel. I, at least, am a little weary of that. What I do is use Navicat for MySQL to query or view the AT's tables and then copy certain data into Excel for manipulation. I then either create MySQL UPDATE statements from said data to execute via Navicat's Console window or simply paste in to the table columns from Excel. Again, BE VERY CAREFUL.
ReplyDeleteThis was great information! I successfully connected and grabbed data both for MSExcel (copying all accessions table data) and for MSAccess (copying ALL the tables).
ReplyDeleteThis kind of functionality will make reporting and metrics much easier!