apending to excel files with wxWriter

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • raghuramos1987
    New Member
    • May 2007
    • 5

    apending to excel files with wxWriter

    guys...one doubt about this...how can i append to and already existing excel file usin pyxlwriter(or usin python in general)?
  • bartonc
    Recognized Expert Expert
    • Sep 2006
    • 6478

    #2
    Originally posted by raghuramos1987
    guys...one doubt about this...how can i append to and already existing excel file usin pyxlwriter(or usin python in general)?
    It may be as easy as:[CODE=python]#
    workbook = xl.Writer("test .xls")
    worksheet = workbook.Seets( 1)[/CODE]As it is with pure PyWin32.

    Comment

    • raghuramos1987
      New Member
      • May 2007
      • 5

      #3
      apeending to excel files

      hi everybody...

      i wanted to append to an excel file usin any module in python,....i tried pyxlwriter and xlrd...they don seem to offer support to write to an already existing excel file....any help would be appreciated

      Comment

      • bartonc
        Recognized Expert Expert
        • Sep 2006
        • 6478

        #4
        Originally posted by bartonc
        It may be as easy as:[CODE=python]#
        workbook = xl.Writer("test .xls")
        worksheet = workbook.Seets( 1)[/CODE]As it is with pure PyWin32.
        If you don't know enough VB to make this work, you can use Excel to record a macro and translate the VB created there into your script.

        Comment

        Working...