473,804 Members | 2,096 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Import Excel .XLS file (Access 2003)?

PW
Does the worksheet have to be exported to a CSV file first or can
Access import directly from an Excel workbook (.xls)?

Thanks,

-paulw
Jun 27 '08 #1
3 3841
On May 15, 3:45*pm, PW <paulremove_wil liamson...@remo vehotmail.com>
wrote:
Does the worksheet have to be exported to a CSV file first or can
Access import directly from an Excel workbook (.xls)?

Thanks,

-paulw
access with handle either based on how you create the link table
Jun 27 '08 #2
PW
On Thu, 15 May 2008 18:19:30 -0700 (PDT), Roger
<le*********@na tpro.comwrote:
>On May 15, 3:45*pm, PW <paulremove_wil liamson...@remo vehotmail.com>
wrote:
>Does the worksheet have to be exported to a CSV file first or can
Access import directly from an Excel workbook (.xls)?

Thanks,

-paulw

access with handle either based on how you create the link table
Would you explain "create the link table" further"? Your response to
my previous post:
>create a linked table to your excel worksheet
then use an insert query to populate your table
<

I did not know a link could be pointed to an Excel file. I do not
know the name of the file until the user selects it in a dialog box
like so:

strFilter = ahtAddFilterIte m(strFilter, "Comma Seperated Value Files
(*.csv)", "*.CSV")

strReturnVal = ahtCommonFileOp enSave(Filter:= strFilter, _
OpenFile:=True, _
DialogTitle:="P lease select the document...", _
Flags:=ahtOFN_H IDEREADONLY)

How would I then link to that file in code?

Thanks!

-pw
Jun 27 '08 #3
On May 15, 8:16*pm, PW <paulremove_wil liamson...@remo vehotmail.com>
wrote:
On Thu, 15 May 2008 18:19:30 -0700 (PDT), Roger

<lesperan...@na tpro.comwrote:
On May 15, 3:45*pm, PW <paulremove_wil liamson...@remo vehotmail.com>
wrote:
Does the worksheet have to be exported to a CSV file first or can
Access import directly from an Excel workbook (.xls)?
Thanks,
-paulw
access with handle either based on how you create the link table

Would you explain "create the link table" further"? *Your response to
my previous post:
create a linked table to your excel worksheet

then use an insert query to populate your table
<

I did not know a link could be pointed to an Excel file. *I do not
know the name of the file until the user selects it in a dialog box
like so:

strFilter = ahtAddFilterIte m(strFilter, "Comma Seperated Value Files
(*.csv)", "*.CSV")

strReturnVal = ahtCommonFileOp enSave(Filter:= strFilter, _
OpenFile:=True, _
DialogTitle:="P lease select the document...", _
Flags:=ahtOFN_H IDEREADONLY)

How would I then link to that file in code?

Thanks!

-pw
create a linked table to an existing csv file, called tblCsv
then use the code below

I used an xls file, so your connect string may be different, use this
in a debug window to get the correct string
?currentdb.Tabl eDefs("tblCSV") .Connect

Dim db As DAO.Database
Dim tbl As DAO.TableDef

Set db = CurrentDb
Set tbl = db.TableDefs("t blCSV")
With tbl
.Connect = "Excel 5.0;HDR=YES;IME X=2;DATABASE=" & strReturnVal
.RefreshLink
End With
End Sub
Jun 27 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
6489
by: Fred | last post by:
Hi. How do I import while mapping an excel table to an access table please??? I've searched around and all I can find is a software product or code that does the same thing as the access wizard..... If I have to write vb code, where is a sample??? Or do I import the excel in to a new spreadsheet and then write some kind of querey to move the data from that table
1
3006
by: Haidee | last post by:
Hi I'm pretty new to MS Access so please be patient.... I have a user that is trying to import an external excel spreadsheet into MS access 2003 by using the File - Get external data - Import. She is also running Access 97 and it works fine into that. The error she gets is: You have encountered an error and MS office access needs to close.We are sorry for any inconvenience.The information you were working on might be lost. MS...
3
3618
by: MarcGA | last post by:
(Excel 2003, Access 2003, XP, novice user here) I can't get Access to accept multiple Excel files to the same table. I can import the spreadsheets to a new table, but I need to import 23 spreadsheets to the same table. I'm not getting a formatting error, just a "file did not import" message. Also, when I do import one-to-one, Access inserts thousands of blank lines before the first line of imported data. How do I keep Access from doing...
1
2326
by: Pauline | last post by:
Dear all, I have an enormous database (Access 2003) containing sales information, and an Excel tool to enable end users to do planning and forecasting. Untill now I would create several queries, export the data to Excel (Excel 2003) and store the Data in the tool for the users to work with. I always have to export all information for a group of users as I never know on what part of the data they want to work. This makes the Excel files very...
8
9667
by: shenkel55 | last post by:
I'm using Access and Excel 2003. Using either the import wizard or code, I have the same problem. This problem only happens with Excel files automatically generated by Corp IT. If I try to do an import and the Excel file isn't open I get the following error: "The wizard is unable to access information in the file "...path info... "Please check that the file exists and is in the correct format." If the files are opened directly in Excel, it...
18
2569
by: PW | last post by:
Convert them to CSV in Excel, then use TransferText (which does not work correctly and also doesn't accept XLS/Excel files directly) or create a link to an Excel XLS workbook and do an Append Query (as some have suggested here)?? I find that hard to believe as Access is part of MS Office and Visual FoxPro is not. I split my time using both and I can do a simple copy command to XLS in VFP or an Append command to DBF or use Office...
5
6538
by: hushens10 | last post by:
Access Naive - Help Needed I am using Access 2003 and Excel 2003. My goal is to create a database for a school where each student's testing information can be stored and organized so that it can be pulled. Each teacher currently has their own Excel file, into which they have entered their student's data. However, for the purposes of other departments, they would like a database file where information can be culled and queries can be run (thus...
1
10720
by: jollyroger | last post by:
I have searched the web forums, and can't seem to find an answer to this particular problem I have. In an excel sheet, cells in one column have formatted text in the "wrapped" cells. For many of the cells it is far more than 256 char. After import to Access, the carriage return (CR) and Line Feed (LF) is shown with a square symbol in the text, and the text is just "dumped" into the field without CR or LF. Have also tried to indentify the...
2
20533
DAF LAD
by: DAF LAD | last post by:
Hi. I have been running an access Database in Office 2003 for a while now. When I upgraded to Office 2007 one of my macro buttons has stopped working. The Button looks up to VBA code to Import a specific Excel spread sheet from a specific location on my hard drive. This file is updated but never re-named or moved so to save time I have created the import macro to do the import steps for me. This has been working fine for me in Office...
0
10600
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10352
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9175
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6867
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5535
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4313
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3835
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3002
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.