Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update ODBC DB through Excel

Tags:

excel

odbc

I am able to query and view table through excel, but I was wondering if there is a way to directly update or insert by modifying data in the excel.

Similar to Microsoft Access Linked table, maybe?

like image 926
sayhaha Avatar asked Mar 04 '13 17:03

sayhaha


1 Answers

You can use VBA, ADODB, and the data driver to write a custom application to do this. But there is nothing built in to Excel for writing back to an ODBC data source. QueryTables in Excel are read-only.

like image 79
Dick Kusleika Avatar answered Oct 13 '22 23:10

Dick Kusleika