Jun-17-2020, 03:17 PM
Hello,
I'm trying to use an excel file that has a list of names in it, that I want the script to use when doing a save as at the end. The list is found in OutputNames_List directory, and the name of the file is outputFileNames.xlsx as shown below in the script. What I currently have at the bottom of the script is not working.
I'm trying to use an excel file that has a list of names in it, that I want the script to use when doing a save as at the end. The list is found in OutputNames_List directory, and the name of the file is outputFileNames.xlsx as shown below in the script. What I currently have at the bottom of the script is not working.
import openpyxl as xl;
import os
import pandas as pd
input_dir = 'C:data'
output_dir = os.path.join(input_dir, 'output')
template = 'C:/data/template/Template.xlsx'
OutputNames_list = 'C:/data/outputNames'
OutputNames = pd.read_excel(OutputNames_list+'outputFileNames.xlsx')
files = [file for file in os.listdir(input_dir)
if os.path.isfile(file) and file.endswith('.xlsx')]
for file in files:
input_file = os.path.join(input_dir, file) # make the full path, so that it does not depend on input_dir and CWD being the same
wb=xl.load_workbook(input_file)
ws=wb.worksheets[1]
# Open template
wb2 = xl.load_workbook(template)
ws2 = wb2.worksheets[2]
# calculate total number of rows and
# columns in source excel file
mr = ws.max_row
mc = ws.max_column
# copying the cell values from source
# excel file to destination excel file
for i in range (1, mr + 1):
for j in range (1, mc + 1):
# reading cell value from source excel file
c = ws.cell(row = i, column = j)
# Cells for source data to pasted inside Template
ws2.cell(row = i+12, column = j+1).value = c.value
# saving the destination excel file
output_file = os.path.join(output_dir, OutputNames['filename'])
output_detailed = pd.ExcelWriter(output_file)
wb2.save(output_file)
