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

Hi All,

I have working on Excel to Access updation.

I have unique number in column A.

I want to update from Excel to Access, As I have more than 10,000
records.

Please help me how to achieve this.

Thanks
  #2   Report Post  
Posted to comp.databases.ms-access,microsoft.public.access,microsoft.public.excel.programming
external usenet poster
 
Posts: 203
Default Excel to Access

"fi.or.jp.de" wrote in message
...
Hi All,

I have working on Excel to Access updation.

I have unique number in column A.

I want to update from Excel to Access, As I have more than 10,000
records.

Please help me how to achieve this.

Thanks



You can also try posting your question to comp.databases.ms-access or
microsoft.public.access.

--
Clif McIrvin

(clare reads his mail with moe, nomail feeds the bit bucket :-)


  #3   Report Post  
Posted to comp.databases.ms-access,microsoft.public.access,microsoft.public.excel.programming
external usenet poster
 
Posts: 236
Default Excel to Access

Lots of ways to achieve that - the simplest (and not automated) is to:
- select the range of your interest
- open the target table in MsAccess
- EditPaste Append
Done.

Another way is to create a linked table in access (New Table Linked
Table) and then link it to the Excel file of your interest.

It all really depends on what exactly you need to achieve.

On Jan 6, 1:46*am, "Clif McIrvin" wrote:
"fi.or.jp.de" wrote in message

...

Hi All,


I have working on Excel to Access updation.


I have unique number in column A.


I want to update from Excel to Access, As I have more than 10,000
records.


Please help me how to achieve this.


Thanks


You can also try posting your question to comp.databases.ms-access or
microsoft.public.access.

--
Clif McIrvin

(clare reads his mail with moe, nomail feeds the bit bucket :-)


  #4   Report Post  
Posted to comp.databases.ms-access,microsoft.public.access,microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Excel to Access

On 06/01/2011 09:02:18, AB wrote:
Lots of ways to achieve that - the simplest (and not automated) is to:
- select the range of your interest
- open the target table in MsAccess
- EditPaste Append
Done.

Another way is to create a linked table in access (New Table Linked
Table) and then link it to the Excel file of your interest.

It all really depends on what exactly you need to achieve.


Hi All,


I have working on Excel to Access updation.


I have unique number in column A.


I want to update from Excel to Access, As I have more than 10,000
records.


Please help me how to achieve this.


Thanks


Clif McIrvin

I think you are oversimplifying the problem.
With 10,000 lines in the Excel sheet, there must be a hell of a lot of
duplication (without any details, it is is impossible to say). So for example
if your Excel sheet has a Product, quantity & date bought, quantity and date
sold and you have just recorded the tranactions day by day, you will need to
create 2 Access tables, 1 for product and 1 for bought & sold. Creating these
tables can be done as Austris suggests. If you set the Product descriptipn as
indexed(No Duplicates) then each product will only occur once. The fun bit
comes when you have to go through all the product descriptions and manually
realise that "gren pepper" is a typo for "green pepper" and you have to
transfer the transactions for "gren pepper" to "green pepper" before you can
delete the former. Excel is for processing figures - Access is for storing &
manipupulating data.

Phil


  #5   Report Post  
Posted to comp.databases.ms-access,microsoft.public.access,microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Excel to Access

Meanwhile, here is a good explanation of linking Excel and Access
programmatically:
http://www.excelguru.ca/node/18

I built a similar interface for users, and after this experience
recommend limiting the number of rows a user may edit/insert at a
time.

Additionally, if both insert and update functionality are required, I
can share my approach to that -- perhaps not beautiful, but
functional.

jn


On Jan 6, 11:22*am, "Phil" wrote:
On 06/01/2011 09:02:18, AB wrote:









Lots of ways to achieve that - the simplest (and not automated) is to:
- select the range of your interest
- open the target table in MsAccess
- EditPaste Append
Done.


Another way is to create a linked table in access (New Table Linked
Table) and then link it to the Excel file of your interest.


It all really depends on what exactly you need to achieve.
Hi All,


I have working on Excel to Access updation.


I have unique number in column A.


I want to update from Excel to Access, As I have more than 10,000
records.


Please help me how to achieve this.


Thanks
Clif McIrvin


I think you are oversimplifying the problem.
With 10,000 lines in the Excel sheet, there must be a hell of a lot of
duplication (without any details, it is is impossible to say). So for example
if your Excel sheet has a Product, quantity & date bought, quantity and date
sold and you have just recorded the tranactions day by day, you will need to
create 2 Access tables, 1 for product and 1 for bought & sold. Creating these
tables can be done as Austris suggests. If you set the Product descriptipn as
indexed(No Duplicates) then each product will only occur once. The fun bit
comes when you have to go through all the product descriptions and manually
realise that "gren pepper" is a typo for "green pepper" and you have to
transfer the transactions for "gren pepper" to "green pepper" before you can
delete the former. Excel is for processing figures - Access is for storing &
manipupulating data.

Phil




  #6   Report Post  
Posted to comp.databases.ms-access,microsoft.public.access,microsoft.public.excel.programming
external usenet poster
 
Posts: 236
Default Excel to Access

Neat code, Jeff.

A question, though - is there any particular/technical reason why you
use "rst.Open INSERT..." as oppose to "cnt.Execute INSERT..."?
Wouldn't it do the same thing just with one variable less?



On Jan 7, 12:10*pm, Jeff wrote:
Meanwhile, here is a good explanation of linking Excel and Access
programmatically:http://www.excelguru.ca/node/18

I built a similar interface for users, and after this experience
recommend limiting the number of rows a user may edit/insert at a
time.

Additionally, if both insert and update functionality are required, I
can share my approach to that -- perhaps not beautiful, but
functional.

jn

On Jan 6, 11:22*am, "Phil" wrote:



On 06/01/2011 09:02:18, AB wrote:


Lots of ways to achieve that - the simplest (and not automated) is to:
- select the range of your interest
- open the target table in MsAccess
- EditPaste Append
Done.


Another way is to create a linked table in access (New Table Linked
Table) and then link it to the Excel file of your interest.


It all really depends on what exactly you need to achieve.
Hi All,


I have working on Excel to Access updation.


I have unique number in column A.


I want to update from Excel to Access, As I have more than 10,000
records.


Please help me how to achieve this.


Thanks
Clif McIrvin


I think you are oversimplifying the problem.
With 10,000 lines in the Excel sheet, there must be a hell of a lot of
duplication (without any details, it is is impossible to say). So for example
if your Excel sheet has a Product, quantity & date bought, quantity and date
sold and you have just recorded the tranactions day by day, you will need to
create 2 Access tables, 1 for product and 1 for bought & sold. Creating these
tables can be done as Austris suggests. If you set the Product descriptipn as
indexed(No Duplicates) then each product will only occur once. The fun bit
comes when you have to go through all the product descriptions and manually
realise that "gren pepper" is a typo for "green pepper" and you have to
transfer the transactions for "gren pepper" to "green pepper" before you can
delete the former. Excel is for processing figures - Access is for storing &
manipupulating data.


Phil- Hide quoted text -


- Show quoted text -


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
Access to Excel: Identify attachment field in access database sam Excel Programming 4 January 7th 10 07:55 PM
Trust Access to Visual Basic Project - Access to Excel and back tcb Excel Programming 0 January 8th 08 02:43 AM
How do I access the access data via Excel 2002 with auto update ? karthik Excel Programming 1 February 9th 07 01:56 PM
Importing data from Access to Excel, but I need to vary the table from Access Liz L. Excel Programming 3 June 6th 06 02:12 AM
export access to excel. change access & update excel at same time fastcar Excel Discussion (Misc queries) 0 June 24th 05 09:27 PM


All times are GMT +1. The time now is 09:34 PM.

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"