Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建一个包含 100 多个工作表(选项卡)的电子表格,每个工作表都有特定的名称。
我没有任何编程知识。对不起我的无知。
这将需要一些时间...
function createSheets() { for (var i=1;i<=100;i++){ newSheetName = 'mySheet'+ ('00' + i).substring(1) SpreadsheetApp.getActiveSpreadsheet().insertSheet(newSheetName); } }