test

test


from copy import copy



ws["A32:N25"].font = copy(ws["A1"].font)

ws["A32:N25"].border = copy(ws["A1"].border)

ws["A32:N25"].fill = copy(ws["A1"].fill)

ws["A32:N25"].number_format = copy(ws["A1"].number_format)

ws["A32:N25"].protection = copy(ws["A1"].protection)

ws["A32:N25"].alignment = copy(ws["A1"].alignment)


wb.save(filename = 'k.xlsx')

Report Page