0
我的腳本位於谷歌電子表格文檔中 這是我的腳本:Javascript。展開一串數字
ss = SpreadsheetApp.getActiveSpreadsheet();
function onOpen() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var menuEntries = [ {name: "10 Rows", functionName: "TenRows"},
{name: "20 Rows", functionName: "TwentyRows"},
{name: "30 Rows", functionName: "ThirtyRows"},
{name: "40 Rows", functionName: "FortyRows"},
{name: "50 Rows", functionName: "FiftyRows"}]
ss.addMenu("Insert Rows", menuEntries);
}
function TenRows() {
SpreadsheetApp.getActiveSheet().insertRowsBefore(2,10);
}
function TwentyRows() {
SpreadsheetApp.getActiveSheet().insertRowsBefore(2,20);
}
function ThirtyRows() {
SpreadsheetApp.getActiveSheet().insertRowsBefore(2,30);
}
function FortyRows() {
SpreadsheetApp.getActiveSheet().insertRowsBefore(2,40);
}
function FiftyRows() {
SpreadsheetApp.getActiveSheet().insertRowsBefore(2,50);
}
在我的電子表格的C列中,每行都有一串數字。
像這樣
C
7317
7316
7315
7314
7313
當我運行我的腳本插入的行數,我怎樣才能使它因此它會自動延續了這一上升數,並將其輸入到C柱?
感謝
伊沃,無論如何,我可以與你分享文件。我不知道我知道如何實現這一點。 – David 2010-12-04 03:52:19