Google sheets related Question
Status: Closed · Asked by zest83 on · 0 views
For Google Sheets: Difference between ADD New Row & Append Value?
Hey @zest83
Google Sheets "Append Value" - In sheets the values will be appended to the next row of the table, starting with the first column of the table. In other words, to write a single row of data to the spreadsheet. To append a row, pass an array of values (corresponding to the columns).

You can refer to the following video for a better understanding.
(Check the 2nd part of the video)
youtube.com/watch?v=UbY596b2J4M
Google Sheets "Add a Row" - It simply adds the values in the rows with respect to the columns which were defined by the column header.

You can refer to this video -
youtube.com/watch?v=Wwjwz_Wpwxw
Thanks