About 50 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. Open a Workbook with XLWINGS without making it visible

    Aug 17, 2016 · I am starting to use XLWings (not that I like Excel, at all, but it is something I HAVE TO do). The thing is that I cannot find the way to make Python open a Workbook without showing it. It …

  3. 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 …

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

    xlwings: Delete a col | row from Excel Ask Question Asked 8 years, 9 months ago Modified 4 years, 4 months ago

  5. excel - python xlwings - copy and paste ranges - Stack Overflow

    Jun 19, 2015 · python xlwings - copy and paste ranges Ask Question Asked 10 years, 9 months ago Modified 2 years, 5 months ago

  6. Any way to create a new worksheet using xlwings? - Stack Overflow

    Oct 14, 2014 · Using Python xlwings, how can I create a new worksheet?

  7. python - RefreshAll in excel file with xlwings - Stack Overflow

    Dec 20, 2018 · I wanted to RefreshAll database connections in a number of excel files but i didn't want to run an Excel macro from within python. I just wanted one line of xlwings code. I looked everywhere …

  8. python - Is there a way to name a range within excel using xlwings API ...

    Jun 7, 2019 · I am trying to use xlwing's sheetname.range("Some object defined range").formula = "=Some excel formula" function, but I am not sure about how I can reference an object defined range …

  9. xlwings function to find the last row with data - Stack Overflow

    Oct 29, 2015 · Solution 2 xlwings is honored for being wrapper of pywin32. I don't know if your situation allows for keyboard or mouse. If so, first you ctrl+tab switch to the workbook, then ctrl+a to select the …

  10. python - Format Table in xlwings - Stack Overflow

    May 31, 2018 · How do you format a table in xlwings? For example, if I wanted to add the excel style "Light Blue, Table Style Light 2" to a Range object from xlwings. Since it isn't in the xlwings docs, I …