Hi. I need a dummy's explanation to utilizing the win32com component
to access Microsoft Excel.
So far, I have this code.
import win32com.client
xl = win32com.client .Dispatch("Exce l.Application")
xl.Visible = 1
workbook = xl.Workbooks.Op en("C:\test.xls ")
Now, my question is, where do I find the snytax I can use to access
such functions like workbook.Active Sheet.Cells(1,1 ).Value etc...
I need a reference to the API I can utilize.
Where can I find this?
Thanks guys,
-Dave
to access Microsoft Excel.
So far, I have this code.
import win32com.client
xl = win32com.client .Dispatch("Exce l.Application")
xl.Visible = 1
workbook = xl.Workbooks.Op en("C:\test.xls ")
Now, my question is, where do I find the snytax I can use to access
such functions like workbook.Active Sheet.Cells(1,1 ).Value etc...
I need a reference to the API I can utilize.
Where can I find this?
Thanks guys,
-Dave
Comment