About 190,000 results
Open links in new tab
  1. python - Differences between xlwings vs openpyxl Reading Excel ...

    You are correct in that xlwings relies on pywin32, whereas openpyxl does not. openpyxl A ".xlsx" excel file is essentially a zip-file containing multiple XML files formatted according to Microsoft's OOXML …

  2. A whole sheet into a pandas dataframe with xlwings

    I would like to use the same method using xlwings. In fact, my Workbook is already open and I don't want to use read_excel function (witch will take too long to execute by the way) but use the power of …

  3. How to suppress "Update Links" Alert with xlwings

    I am interfacing with Excel files in Python using the xlwings api. Some Excel files I am interacting with have old links which cause a prompt to appear when the file is opened asking if the user would like to …

  4. Move worksheet within a workbook to the end - Stack Overflow

    With xlwings, I am trying to move a worksheet within a workbook to the end. For example, a workbook contains a collection of the following sheets: Sheet1, Sheet2, Sheet3 How can I move Sheet1 after

  5. xlwings - find a cell coordinate containing a value (a date)

    xlwings - find a cell coordinate containing a value (a date) Asked 7 years, 8 months ago Modified 7 years, 5 months ago Viewed 11k times

  6. xlwings: Delete a col | row from Excel - Stack Overflow

    xlwings: Delete a col | row from Excel Asked 8 years, 5 months ago Modified 4 years ago Viewed 16k times

  7. Filling a column with formula using xlwings - Stack Overflow

    Jan 12, 2023 · I am trying to write code for coping values from on column to another column using excel formula with xlwings Sample code If I am using above code it is coping the cell value of V3 to B3. …

  8. Copying a worksheet with xlwings and python - Stack Overflow

    Apr 17, 2019 · I have been using xlwings in Python, but have not been able to figure out how to copy a worksheet. I want to treat a particular worksheet as a template, and copy that worksheet each time …

  9. com_error: (-2147352567, 'Exception occurred.', (0, None, None, None, …

    Mar 10, 2019 · While generating pdf from excel sheet i am getting below error: ws.ExportAsFixedFormat(0, save_as) File "<COMObject <unknown>>", line 5, in …

  10. From pandas dataframe to excel with xlwings? - Stack Overflow

    Dec 17, 2020 · 2 I have a pandas dataframe where I did a 24x 12 matrix with colors to be able to represent my data better. What I want to do is put this in excel with xlwings. But I don't know how. I …