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.
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
Post a Comment