ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Append Data In Worksheet To Access Table (https://www.excelbanter.com/excel-programming/284094-append-data-worksheet-access-table.html)

Martin[_14_]

Append Data In Worksheet To Access Table
 
There is an Access table on the network. 15 users who do not have Access are
connected to the network. Is there a way for each user to be able to enter one
or more rows containing 3 or 4 columns to Excel on his machine and then press a
button or something and append that data to the Access table on the network?
Also would need to delete the data from the worksheet after the append. How
would I prevent more than one user from appending data at the same time? Any
suggestions on what the code would be?

Thank you very much!

Martin




Colo

Append Data In Worksheet To Access Table
 
Hi Martin,

Please lookin to "TransferSpreadsheet" in the help of Access.


--
Kind Regards
Colo
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Colo of 'The Road of The Cell Masters' :)

URL:http://www.interq.or.jp/sun/puremis/...astersLink.htm


/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/


"Martin" wrote in message
k.net...
There is an Access table on the network. 15 users who do not have Access

are
connected to the network. Is there a way for each user to be able to enter

one
or more rows containing 3 or 4 columns to Excel on his machine and then

press a
button or something and append that data to the Access table on the

network?
Also would need to delete the data from the worksheet after the append.

How
would I prevent more than one user from appending data at the same time?

Any
suggestions on what the code would be?

Thank you very much!

Martin





Martin[_14_]

Append Data In Worksheet To Access Table
 
Colo,

Thank you for responding!

I want each Excel user to be able to independently append data to the Access
table.

Martin


"Colo" wrote in message
...
Hi Martin,

Please lookin to "TransferSpreadsheet" in the help of Access.


--
Kind Regards
Colo
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Colo of 'The Road of The Cell Masters' :)

URL:http://www.interq.or.jp/sun/puremis/...astersLink.htm


/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/


"Martin" wrote in message
k.net...
There is an Access table on the network. 15 users who do not have Access

are
connected to the network. Is there a way for each user to be able to enter

one
or more rows containing 3 or 4 columns to Excel on his machine and then

press a
button or something and append that data to the Access table on the

network?
Also would need to delete the data from the worksheet after the append.

How
would I prevent more than one user from appending data at the same time?

Any
suggestions on what the code would be?

Thank you very much!

Martin







onedaywhen

Append Data In Worksheet To Access Table
 
Here's some example code to be run from an Excel workbook, but not the
workbook you are querying to avoid the memory leak bug (MSDN Q319998).
In absence of any detail, I've made inventions and assumptions e.g.
MyWorksheet is arranged as a database and has two columns headed
'Col1' and 'Col2' with data below etc. Post back if you require more
details.

'<code---------------
Sub test1()

Dim oCon As Object
Dim strSql As String

Set oCon = CreateObject("ADODB.Connection")

oCon.Open = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=\\Server\Folder\MyDatabase.mdb"

strSql = "INSERT INTO MyTable (RefID, Surname)" & _
" SELECT T1.Col1 AS RefID, T2.Col2 AS Surname" & _
" FROM [MyWorksheet$] T2 " & _
"IN 'C:\MyWorkbook.xls' 'Excel 8.0;'"

oCon.Execute (strSql)

oCon.Close

End Sub
'</code---------------

--


"Martin" wrote in message ink.net...
Colo,

Thank you for responding!

I want each Excel user to be able to independently append data to the Access
table.

Martin


"Colo" wrote in message
...
Hi Martin,

Please lookin to "TransferSpreadsheet" in the help of Access.


--
Kind Regards
Colo
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Colo of 'The Road of The Cell Masters' :)

URL:http://www.interq.or.jp/sun/puremis/...astersLink.htm


/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/


"Martin" wrote in message
k.net...
There is an Access table on the network. 15 users who do not have Access

are
connected to the network. Is there a way for each user to be able to enter

one
or more rows containing 3 or 4 columns to Excel on his machine and then

press a
button or something and append that data to the Access table on the

network?
Also would need to delete the data from the worksheet after the append.

How
would I prevent more than one user from appending data at the same time?

Any
suggestions on what the code would be?

Thank you very much!

Martin





onedaywhen

Append Data In Worksheet To Access Table
 
Exactly how many groups did you cross- and multi-post to? Did you
re-post to all these groups to say you have already received "a great
response!!!"? Apparently not.

--

"Martin" wrote in message ink.net...
Colo,

Thank you for responding!

I want each Excel user to be able to independently append data to the Access
table.

Martin


"Colo" wrote in message
...
Hi Martin,

Please lookin to "TransferSpreadsheet" in the help of Access.


--
Kind Regards
Colo
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Colo of 'The Road of The Cell Masters' :)

URL:http://www.interq.or.jp/sun/puremis/...astersLink.htm


/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/


"Martin" wrote in message
k.net...
There is an Access table on the network. 15 users who do not have Access

are
connected to the network. Is there a way for each user to be able to enter

one
or more rows containing 3 or 4 columns to Excel on his machine and then

press a
button or something and append that data to the Access table on the

network?
Also would need to delete the data from the worksheet after the append.

How
would I prevent more than one user from appending data at the same time?

Any
suggestions on what the code would be?

Thank you very much!

Martin






All times are GMT +1. The time now is 10:37 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com