About 191,000 results
Open links in new tab
  1. python - How can I specify column names while reading an Excel …

    import pandas as pd xl = pd.ExcelFile("Path + filename") df = xl.parse("Sheet1") The first cell's value of each column is selected as the column name for the dataFrame, and I want to specify …

  2. excel - how can i rename using python any .xlsx file in a directory ...

    Dec 13, 2022 · I could not find similar question here but how can i rename using python any .xlsx file in a directory? The goal is not to hardcode the filename to rename it into something else.

  3. Rename excel file with VBA - Stack Overflow

    Feb 22, 2021 · I'm creating an excel file from nothing, adding content and saving it. I want to rename the excel file once I saved it, using VBA code. The file I want to rename isn't the same …

  4. office365 - Schedule the copy/move and renaming of a file in …

    Feb 6, 2021 · I've tried a variety of configurations with Microsoft Power Automate to copy/move and rename a file in Sharepoint and am getting nowhere. I've seen a handful of examples …

  5. Excel Pivot Table data source after file name change, refers to ...

    Apr 10, 2015 · I had this very issue (using Excel 2013). After simple file copy\rename and opening copied\renamed file, excel started complaining about security (external data source) and i was …

  6. Rename multiple files using Excel VBA - Stack Overflow

    Dec 16, 2019 · I am using these two codes: Get_Files_Information: To pull up the file names from the folder for renaming Option Explicit Sub Get_Files_Information() Dim sh As Worksheet Set …

  7. vba - Rename Files Using List in Excel - Stack Overflow

    I am trying to rename a file using based on a list in excel such that column A has old file name and Column B has new file name. It worked for some files but its not renaming some files.

  8. python - How to rename an Excel sheet? - Stack Overflow

    I have a scenario where I wanted to change the name of a sheet in the spread-sheet. I tried creating a spread-sheet using ss = Workbook(). I think this is creating the spread-sheet with a …

  9. Unzip in VBA and rename output file to zip-file name

    Jun 19, 2024 · I just want to unzip a file and rename the output to the zip files name then (e.g. myfile.zip ---> myfile.xls). My zipfiles contain only one single xls file each.

  10. Change the name of excel worksheet with pandas - Stack Overflow

    Apr 25, 2018 · There are 2 ways you can approach this problem. Approach 1 Save the excel file to the correct worksheet name from the beginning, by using the sheet_name argument.