Criar um sumário da pasta de trabalho
Este exemplo mostra como criar uma tabela de conteúdo para a pasta de trabalho. Cada entrada na tabela de conteúdo é um hiperlink para uma das planilhas da pasta de trabalho.
Instalação: Exemplo de arquivo do Excel
Esta pasta de trabalho contém os dados, objetos e formatação esperados pelo script.
Código de exemplo: criar uma tabela de conteúdo de pasta de trabalho
Adicione o script a seguir à pasta de trabalho de exemplo e experimente a amostra por conta própria!
function main(workbook: ExcelScript.Workbook) {
// Insert a new worksheet at the beginning of the workbook.
let tocSheet = workbook.addWorksheet();
tocSheet.setPosition(0);
tocSheet.setName("Table of Contents");
// Give the worksheet a title in the sheet.
tocSheet.getRange("A1").setValue("Table of Contents");
tocSheet.getRange("A1").getFormat().getFont().setBold(true);
// Create the table of contents headers.
let tocRange = tocSheet.getRange("A2:B2")
tocRange.setValues([["#", "Name"]]);
// Get the range for the table of contents entries.
let worksheets = workbook.getWorksheets();
tocRange = tocRange.getResizedRange(worksheets.length, 0);
// Loop through all worksheets in the workbook, except the first one.
for (let i = 1; i < worksheets.length; i++) {
// Create a row for each worksheet with its index and linked name.
tocRange.getCell(i, 0).setValue(i);
tocRange.getCell(i, 1).setHyperlink({
textToDisplay: worksheets[i].getName(),
documentReference: `'${worksheets[i].getName()}'!A1`
});
};
// Activate the table of contents worksheet.
tocSheet.activate();
}
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.