Here comes again, I have managed to collect specific data from resx file (xml) to generate an Excel file. Now, the task is to concatenate all the data to lowest row in this excel file.
First opening the input file to read(r) and write(w).
wb = load_workbook('Excel.xlsx')
access the worksheet named 'Sheet'
ws=get_sheet_by_name('Sheet')
So now, I need to Concatenate the data from all the cells in one column to the last empty cell of that column. Then generate this new excel file.
for example, Column Name: any column row1: ABC row2: EFG row3: HIJ
last row after concatenation should look like,
row4 : ABC EFG HIJ
As a python beginner this seems to be a pretty hard stuff for me. Please help to improve.
Thanks a lot.