Google Spreadsheet - Insert cut/copied cells/rows -


google spreadsheet doesn't have functionality "insert cut cells" in excel.

let's selected a4 b5, hit ctrl+x.
moved selection a2.
want "insert cut cells", inserting blank cells , moving dotted-range a2.
screenshot

is there way using javascript on your own menu?

eg.

function insertcutorcopiedcells(){   var ss = spreadsheetapp.getactivespreadsheet();   var sheet = ss.getactivesheet();   var cell = sheet.getactivecell();    // how cells being cut/copied? (ie. a4 b5)    // can insert empty cells (2 cols 2 rows) @ selection (a2)   // , move cut cells (a4 b5) there } 

to achieve insert cut cells feature in google sheets use drag , drop. first highlight row(s) want move mouse on row number (you see hand icon); then, holding left-click, see dark line insert take place. let go of mouse button , voila.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -