I have a set of macros that I turned into an add-in in excel. Macros allow me to interact with another program called Microsoft Automation Objects, which provides some control over what another program is doing. For example, I have a filter tool in an add-in that filters the list provided by another program to match the list in the Excel workbook. However, it is slow. I can have fifty thousand rows in another program and you want to filter out all the rows that do not match the list of three thousand rows in Excel. This type of compliance takes about 30-40 minutes. I began to wonder if there is a way to do this with Python, because I suspect that the matching process can be completed in a few seconds.
Edited by:
Thanks. On the offer to take a look at Hammond's book, I learned a number of resources. However, although I am still studying this, it looks like many of them are old. For example, Hammond’s book was published in 2000, which means that the letter was completed almost ten years ago. Adjustment I just found a package called PyWin32 with build 2/2009.
That should make me start. Thanks
source share