We need to create a custom formula for users to pull data from our mysql database. After the user is authenticated, they would type in a formula in excel (something like ‘=retrievemybirthday(“Frank Dodge”)’. How do we go about doing that? We’re not new to programming, just new to programming w/ Excel. Are there any tutorials on this? We’ve looked but can find anything.
thanks!
1) you need an ODBC driver configured for your MySQL db.
2) figure out the SQL code you need for this function, something like
You will use this code in your function
3) In your function, you will need the correct Connection String. Check a site like http://www.connectionstrings.com/
4) Here’s an example of a function, using ActiveX Data Objects (you need a reference set in Tools > References in the VB Editor)
You can run this function on the sheet as requested.