Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to combine number of excel files into a single file using python or pandas

import os
import pandas as pd
cwd = os.path.abspath('') 
files = os.listdir(cwd)  
df = pd.DataFrame()
for file in files:
    if file.endswith('.xlsx'):
        df = df.append(pd.read_excel(file), ignore_index=True) 
df.head() 
df.to_excel('total_sales.xlsx')
Source by pythoninoffice.com #
 
PREVIOUS NEXT
Tagged: #combine #number #excel #files #single #file #python #pandas
ADD COMMENT
Topic
Name
8+1 =