I have 2 input files and 1 main file in excel. I want to use python to copy values from the input file and paste into the main file of the corresponding row and column as such:
Input file 1 (COPIED)
Col Row extra1 extra2 value
A 70 6.1
B 87 5.0
G 90 4.4
Input file 2 (COPIED)
Col Row extra1 extra2 value
C 10 0.9
F 17 3.3
G 20 1.1
Main file (PASTED)
Col Row value
A 70 6.1
B 87 5.0
C 10 0.9
F 17 3.3
G 20 1.1
G 90 4.4
The row and col columns are already filled in the first place. Anyone has any solutions or insights into how to go about doing this? thank you in advance