Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Copy data from Excel to Access

Office 97:

I want to read data cell by cell from Excel and add the data to an Access
table with the command AddNew:

With rstTemp
.AddNew
!Time = strTime
!Name = strName
.Update
.Bookmark = .LastModified
End With

This works fine as long as the data shall go to the field "Name". But I want
to replace the !Name with a variable, so that I can copy data from various
columns in Excel and use the value of the top cell in the column to find the
right column in Access.

Do You have any solutions?

regards

Finn



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 51
Default Copy data from Excel to Access

Firstly Finn, change the Name of your field in Access to something else:
Name is a reserved word and will cause you problems further down the line.

P


"Finn Petersen" wrote in message
...
Office 97:

I want to read data cell by cell from Excel and add the data to an Access
table with the command AddNew:

With rstTemp
.AddNew
!Time = strTime
!Name = strName
.Update
.Bookmark = .LastModified
End With

This works fine as long as the data shall go to the field "Name". But I

want
to replace the !Name with a variable, so that I can copy data from various
columns in Excel and use the value of the top cell in the column to find

the
right column in Access.

Do You have any solutions?

regards

Finn





  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 32
Default Copy data from Excel to Access

Use the Fields object to define what field of the recordset you want to
populate.

--- For example: (where the Access database has fields named: [myTime] and
[myName])
rstTemp.Fields("myTime").Value = strTime
rstTemp.Fields("myName").Value = strName

--- To use a variable:
Dim sFld0 As String
Dim sFld1 As String

sFld0 = "myTime"
sFld1 = "myName"
rstTemp.Fields(sFld0).Value = strTime
rstTemp.Fields(sFld1).Value = strName

--- Also, you can reference by position (useful for arrays). The fields will
be arranged in order that they appear in the recordset.
rstTemp.Fields(0).Value = strTime
rstTemp.Fields(1).Value = strName

Hope that gets you started.

Troy

"Finn Petersen" wrote in message
...
Office 97:

I want to read data cell by cell from Excel and add the data to an Access
table with the command AddNew:

With rstTemp
.AddNew
!Time = strTime
!Name = strName
.Update
.Bookmark = .LastModified
End With

This works fine as long as the data shall go to the field "Name". But I

want
to replace the !Name with a variable, so that I can copy data from various
columns in Excel and use the value of the top cell in the column to find

the
right column in Access.

Do You have any solutions?

regards

Finn





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can Excel access data from Access?! Al Excel Discussion (Misc queries) 5 April 5th 08 03:52 PM
COPY DATA FROM ACCESS - PASTE IN EXCEL CHRISTI Excel Worksheet Functions 0 January 25th 08 08:03 AM
Data from Access to Excel Paul Dennis Excel Discussion (Misc queries) 8 October 10th 06 06:33 PM
Exporting data from access to excel vinayak Excel Worksheet Functions 0 April 11th 06 08:20 AM
Excel data to Access newbie[_2_] Excel Programming 2 July 11th 03 03:04 PM


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"