<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Cleaning Up Corporate ERP Data</title>
	<atom:link href="http://www.pythonexcels.com/2009/11/cleaning-up-corporate-erp-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pythonexcels.com/2009/11/cleaning-up-corporate-erp-data/</link>
	<description>Data Mining with Excel and Python</description>
	<lastBuildDate>Mon, 15 Mar 2010 00:46:05 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: dan</title>
		<link>http://www.pythonexcels.com/2009/11/cleaning-up-corporate-erp-data/comment-page-1/#comment-101</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Mon, 08 Feb 2010 03:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythonexcels.com/?p=191#comment-101</guid>
		<description>Hi Vincente,

  Thanks for checking out this blog, these are techniques I learned in developing better ways to process ERP data.  I use Excel 2007, but haven&#039;t experimented much reading and writing to named ranges.  My approach would be similar to what I&#039;ve described in other posts: capture what you want to do in a macro, review the VB code and port it to Python.  

  There is some other work going on with Python and spreadsheets.  Check out Resolver Systems ( http://www.resolversystems.com ), they have a spreadsheet program called Resolver One that supports full Python customization.  Another post I stumbled upon was ( http://fpgacomputing.blogspot.com/2008/03/python-spreadsheets-like-resolver-only.html ), which describes linking Excel to Python so that you can type Python syntax into an Excel spreadsheet cell and have it executed.   You can always Google for Python and Excel ( http://www.google.com/#hl=en&amp;source=hp&amp;q=python+excel ) and see what else is going on.  Good luck --- Dan</description>
		<content:encoded><![CDATA[<p>Hi Vincente,</p>
<p>  Thanks for checking out this blog, these are techniques I learned in developing better ways to process ERP data.  I use Excel 2007, but haven&#8217;t experimented much reading and writing to named ranges.  My approach would be similar to what I&#8217;ve described in other posts: capture what you want to do in a macro, review the VB code and port it to Python.  </p>
<p>  There is some other work going on with Python and spreadsheets.  Check out Resolver Systems ( <a href="http://www.resolversystems.com" rel="nofollow">http://www.resolversystems.com</a> ), they have a spreadsheet program called Resolver One that supports full Python customization.  Another post I stumbled upon was ( <a href="http://fpgacomputing.blogspot.com/2008/03/python-spreadsheets-like-resolver-only.html" rel="nofollow">http://fpgacomputing.blogspot.com/2008/03/python-spreadsheets-like-resolver-only.html</a> ), which describes linking Excel to Python so that you can type Python syntax into an Excel spreadsheet cell and have it executed.   You can always Google for Python and Excel ( <a href="http://www.google.com/#hl=en&#038;source=hp&#038;q=python+excel" rel="nofollow">http://www.google.com/#hl=en&#038;source=hp&#038;q=python+excel</a> ) and see what else is going on.  Good luck &#8212; Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vicente Soler</title>
		<link>http://www.pythonexcels.com/2009/11/cleaning-up-corporate-erp-data/comment-page-1/#comment-99</link>
		<dc:creator>Vicente Soler</dc:creator>
		<pubDate>Sat, 06 Feb 2010 16:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythonexcels.com/?p=191#comment-99</guid>
		<description>Hello Dan,

I like your website a lot. I am an expert at using Excel interactively, can somehow write VBA for Excel functions/routines, and I am learning Python, which I can tell you, I like a lot.

I also have to handle quite often big tables of data, although not always coming from SAP.

Since my data tables can be placed in different places on the worksheet, and I usually move them around, I prefer to insert names that identify some ranges, and then I read those ranges.

Perhaps you could write some day about reading and writing to named ranges, in a shot (not cell by cell), giving some directions as to how to deal with vertical sets of data, horizontal ones, rectangular ones, and so on.

With the new table feature of excel 2007 I would also be able to read ranges with headers, write data table with headers, etc.

Handling excel (client) by means of Python (server), which I think is what you do, is very interesting and gives you a lot of calculation power.

However, I would also like, if it is possible, to call Python defs or routines from within excel, by means of, for example, clicking a button. Could you please write on it or direct me to any sites that may deal with this subject?

As you see, I am among those ones that thing that Excel (or Openoffice calc) should be able to run python scripts natively. Perhaps one day, who knows.

If you some day decide to write on these issues, I would appreciate it a lot. If not, thank you for your patience reading this post.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hello Dan,</p>
<p>I like your website a lot. I am an expert at using Excel interactively, can somehow write VBA for Excel functions/routines, and I am learning Python, which I can tell you, I like a lot.</p>
<p>I also have to handle quite often big tables of data, although not always coming from SAP.</p>
<p>Since my data tables can be placed in different places on the worksheet, and I usually move them around, I prefer to insert names that identify some ranges, and then I read those ranges.</p>
<p>Perhaps you could write some day about reading and writing to named ranges, in a shot (not cell by cell), giving some directions as to how to deal with vertical sets of data, horizontal ones, rectangular ones, and so on.</p>
<p>With the new table feature of excel 2007 I would also be able to read ranges with headers, write data table with headers, etc.</p>
<p>Handling excel (client) by means of Python (server), which I think is what you do, is very interesting and gives you a lot of calculation power.</p>
<p>However, I would also like, if it is possible, to call Python defs or routines from within excel, by means of, for example, clicking a button. Could you please write on it or direct me to any sites that may deal with this subject?</p>
<p>As you see, I am among those ones that thing that Excel (or Openoffice calc) should be able to run python scripts natively. Perhaps one day, who knows.</p>
<p>If you some day decide to write on these issues, I would appreciate it a lot. If not, thank you for your patience reading this post.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
