I've been spending the better part of the weekend trying to figure out the best way to transfer data from an MS Access table into an Excel sheet using Python. I've found a few modules that may help (execsql, python-excel), but with my limited knowledge and the modules I have to use to create certain data (I'm a GIS professional, so I'm creating spatial data using the ArcGIS arcpy module into an access table)

I'm not sure what the best approach should be. All I need to do is copy 4 columns of data from access to excel and then format the excel. I have the formatting part solved.

Should I:

Iterate through the rows using a cursor and somehow load the rows into excel? Copy the columns from access to excel? Export the whole access table into a sheet in excel?

Thanks for any suggestions.

link|improve this question

57% accept rate
1  
BTW, 8 questions, zero upvotes cast and a 17% accept rate will not encourage people to help you. – Mitch Wheat Oct 3 '11 at 0:37
Maybe you can be helpful and explain what that means. I just come here to ask questions, not win a popularity contest. I'm new to this site and don't use it very often. – Mike Oct 4 '11 at 18:44
Disregard weenies who complain about acceptance rate -- anybody who cares more about that than about answering questions really isn't somebody who is helpful. FWIW, Mitch is at least one who almost always offers his own answer to the question when he kvetches about acceptance rate. – David-W-Fenton Oct 6 '11 at 1:17
feedback

5 Answers

up vote 1 down vote accepted

I currently use the XLRD module to suck in data from an Excel spreadsheet and an insert cursor to create a feature class, which works very well.

You should be able to use a search cursor to iterate through the feature class records and then use the XLWT Python module (http://www.python-excel.org/) to write the records to Excel.

link|improve this answer
Hey Daniel, this is eventually what I did. Thanks for the direction. I'll answer my question with my code. – Mike Oct 4 '11 at 18:32
feedback

You can use ADO to read the data from Access(Here are the connection strings for Access 2007+(.accdb files) and Access 2003-(.mdb files)) and than use Excel's Range.CopyFromRecordset method(assuming you are using Excel via COM) to copy the entire recordset into Excel.

link|improve this answer
Hey thanks Idan. I found a solution, but I looked through your links and they may come useful for some ideas I have for the future. – Mike Oct 4 '11 at 18:45
feedback

The best approach might be to not use Python for this task.

You could use the macro recorder in Excel to record the import of the External data into Excel. After starting the macro recorder click Data -> Get External Data -> New Database Query and enter your criteria. Once the data import is complete you can look at the code that was generated and replace the hard coded search criteria with variables.

link|improve this answer
Hey Mitch. Thanks for taking the time to answer. I'm kind of handcuffed with python. I'm creating an ArcGIS tool and it can only be created using python. Their files are called feature classes, which uses Access as the underlying database. My end user is only capable of using the data I create in excel. This might be too ambitious for python? – Mike Oct 3 '11 at 0:49
feedback

Another idea - how important is the formatting part? If you can ditch the formatting, you can output your data as CSV. Excel can open CSV files, and the CSV format is much simpler then the Excel format - it's so simple you can write it directly from Python like a text file, and that way you won't need to mess with Office COM objects.

link|improve this answer
feedback

I eventually found a way to do this. I thought I'd post my code for anyone who may run into the same situation. I use some GIS files, but if you don't, you can set a variable to a directory path instead of using env.workspace and use a cursor search instead of the arcpy.SearchCursor function, then this is doable.

import arcpy, xlwt
from arcpy import env
from xlwt import Workbook

# Set the workspace. Location of feature class or dbf file. I used a dbf file.
env.workspace = "C:\data"

# Use row object to get and set field values
cur = arcpy.SearchCursor("SMU_Areas.dbf")

# Set up workbook and sheet
book = Workbook()
sheet1 = book.add_sheet('Sheet 1')
book.add_sheet('Sheet 2')

# Set counter
rowx = 0

# Loop through rows in dbf file.
for row in cur:
    rowx += 1
    # Write each row to the sheet from the workbook. Set column index in sheet for each column in .dbf
    sheet1.write(rowx,0,row.ID)
    sheet1.write(rowx,1,row.SHAPE_Area/10000)
    book.save('C:\data\MyExcel.xls')

del cur, row
link|improve this answer
You are saving the file once per row, instead of just once at the end. Unindent the book.save(.....) line. – John Machin Oct 10 '11 at 20:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.