text 在Google电子表格中对标签进行排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 在Google电子表格中对标签进行排序相关的知识,希望对你有一定的参考价值。

1. Copy/Paste the information below to the clipboard
2. Open the spreadsheet whose sheets need to be alphabetised
3. Choose Tools > Script editor > Blank (this opens a new tab in the browser)
4. Press Control+A followed by Control+V copy and paste the script in
5. Press Control+S to save the script
6. Choose Run > sortSheets
7. Go back to the spreadsheet tab to view the new sorted tab order

--Copy everything below this line--
function sortSheets () {
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheetNameArray = [];
  var sheets = ss.getSheets();
   
  for (var i = 0; i < sheets.length; i++) {
    sheetNameArray.push(sheets[i].getName());
  }
  
  sheetNameArray.sort();
    
  for( var j = 0; j < sheets.length; j++ ) {
    ss.setActiveSheet(ss.getSheetByName(sheetNameArray[j]));
    ss.moveActiveSheet(j + 1);
  }
}

以上是关于text 在Google电子表格中对标签进行排序的主要内容,如果未能解决你的问题,请参考以下文章

text Google电子表格转换为JSON

在表格视图部分中对核心数据对象进行排序

在angularjs中对表格的行进行排序或重新排列(拖放)

如何在Python中对版本标签列表进行排序[重复]

在 Lua 中对表 [] 进行排序

Google表格API:获取上次编辑的标签名称