Google Sheets onEdit - trying to copy a row to a new sheet by changing the value of a column within that same row

前端 未结 1 364
南方客
南方客 2021-01-27 18:10

Please see Sheet1 of my spreadsheet:

https://docs.google.com/spreadsheets/d/1EoOIQxWyKWOvtlCrmJNI76FAxGhzgXrE4s0F05tw2MY/edit#gid=0

As an example, I would like t

1条回答
  •  执笔经年
    2021-01-27 18:21

    Solution

    With Update 2 you were really close to solve this issue. However, you had a typo, replace:

    rowAbove.ClearContent();
    

    with

    rowAbove.clearContent();
    

    I hope this has helped you. Let me know if you need anything else or if you did not understood something. :)

    0 讨论(0)
提交回复
热议问题