如何自动将 google sheet 的 sheets 键放入 sheet 的单元格中?
How to get the sheets key of a google sheet into a cell in the sheet automatically?
如何自动将 google sheet 的 sheets 键放入 sheet 的单元格中?
现在我正在从 url 复制密钥,但我希望密钥自动显示在 sheet 的单元格中。是否可以使用公式或应用程序脚本?
对于sheetID,放在一个单元格中
=mySheetId()
在脚本编辑器中验证此脚本后
function mySheetId(){
return SpreadsheetApp.getActiveSheet().getSheetId()
}
对于电子表格ID,放入一个单元格
=mySpreadsheetId()
在脚本编辑器中验证此脚本后
function mySpreadsheetId() {
return SpreadsheetApp.getActiveSpreadsheet().getId();
}
如何自动将 google sheet 的 sheets 键放入 sheet 的单元格中?
现在我正在从 url 复制密钥,但我希望密钥自动显示在 sheet 的单元格中。是否可以使用公式或应用程序脚本?
对于sheetID,放在一个单元格中
=mySheetId()
在脚本编辑器中验证此脚本后
function mySheetId(){
return SpreadsheetApp.getActiveSheet().getSheetId()
}
对于电子表格ID,放入一个单元格
=mySpreadsheetId()
在脚本编辑器中验证此脚本后
function mySpreadsheetId() {
return SpreadsheetApp.getActiveSpreadsheet().getId();
}