I have a Data.txt that i want to import to an already existing Work.xlsx file with python. The Data.txt is formated as follows:
Data1 Data2 Data3
Data4 Data5 Data6
I want Data1 to go in cell E1, Data2 to F1, Data3 G1, Data4 E2, Data5 F2, Data6 G2, in the sheet called "Plan" The data in the .txt file is separated with spaces.
im fairly new to programming, ive tried some openpyxl, but im not sure if i should.