0

sh[9].append(values=[claststr], start='a8') This code adds a column. I want to add a value to the next column with the last value of row 'a' or 'b'.enter image description here

1 Answers1

0

you can use

wks.append_table(["claststr", None, None, None])

Or you can use

 wks.update_value( (1,len(wks[0])), "classstr")
Nithin
  • 5,470
  • 37
  • 44
  • sh[9] .append_table (values ​​= [claststr], overwrite=True) 이코드를 이용해서 값을 추가할수 있었다. – rooten choi Apr 20 '21 at 23:14
  • However, this sometimes adds value to column A and sometimes to column D. I think we need to fix it in row A with dimensions in the option, but I don't know how to do it. Help me. – rooten choi Apr 20 '21 at 23:17