Part of my job entails taking yesterday's Excel sheet that's formatted the same way every day and manually inputting the same information from it into 2 different Access databases. Lots of Alt+Tab, CTRL+C, CTRL+V. I know it can be done much easier and less time consuming via VB.net.
I tried http://tempuri.org/tempuri.html but couldn't get it to work
I also tried cherry picking from http://tempuri.org/tempuri.html but couldn't get it to work either
Any help/direction is appreciated
steve phillipsPosted Sep 2, 2010, 1:52 AM
I think, you can just scour the internet, and you'll probably find dozens of techniques for combining multiple Excel files together and this is basic stuff you find lots of examples on the net. this is part of job. thanks.
_________________________________________________________
BenjaminPosted May 28, 2010, 7:35 AM
try to open the excel workbook, get the data into variables and then do an update-sql statement. This is basic stuff you find lots of examples on the net.
Here's a start to open excel-workbook:
Dim objExcel As Object
objExcel = CreateObject("Excel.application")
objExcel.visible = True
objExcel.workbooks.open("c:\test.xls")
Hope this helps