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.
无论当前工作表名称是什么,如何创建脚本来重命名工作簿中的第二个工作表?
我有一个脚本可以删除除第一张和第二张之外的所有工作表。
然后我想用今天的日期重命名第二张纸。除了重命名,我拥有其他一切。
function myFunction() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var tz = ss.getSpreadsheetTimeZone(); var sheets = ss.getSheets(); var date = Utilities.formatDate(new Date(), tz, 'MM-dd-yyyy'); sheets[1].setName(date); // Rename second }
参考