Let's say I have file1.xlsx where A2 = 5 and file2.xlsx where A2=7.
I want to be able to merge them to create a file3.xlsx where A2=12 (7+5)
Thank you for your help
--
tried this but still not working :
import pandas as pd
file1 = pd.read_excel('C:\test\file1.xlsx', index_col=None, header=None)
file2 = pd.read_excel('C:\test\file2.xlsx', index_col=None, header=None)
'C:\test\file3.xlsx' = file1.add(file2, fill_value=0)