M
M
MichaelMih2021-04-26 20:02:56
Google Sheets
MichaelMih, 2021-04-26 20:02:56

How to add a new line in google sheets above another line?

How to add a new line in google sheets above another line? Let's add a new line above line 3

Answer the question

In order to leave comments, you need to log in

1 answer(s)
B
BasiC2k, 2021-04-26
@BasiC2k

Select line 3, then the menu: Insert - Line above.
Insert programmatically:

function myFunction() {
SpreadsheetApp.getActive().getActiveSheet().insertRowsBefore(3, 1);
};

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question