Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
hello Please try the below code its working for me!!!! #CSV to Excel try # # open_an_existing_workbook.py # Open an existing workbook import win32com.client as win32 excel = win32.gencache.EnsureDispatch('Excel.Application') wb = excel.Workbooks.Open(r'D:\Documents and Settings\palappr\Desktop\test\New\CPR sani bagavan.csv') excel.Visible = False outxl=r'D:\Documents and Settings\palappr\Desktop\test\New\CPR sani bagavan.xls' wb.SaveAs(outxl, FileFormat=1) wb.Close(False) excel.Quit()
The End.
ramwins1