ExcelScript.SpecialCellType enum
Hinweise
Beispiele
/**
* This script finds and highlights all the cells in the current worksheet that contain a formula.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the used range on the current sheet.
const currentSheet = workbook.getActiveWorksheet();
const usedRange = currentSheet.getUsedRange();
// Get the RangeAreas object for each cell with a formula.
const formulaCells = usedRange.getSpecialCells(ExcelScript.SpecialCellType.formulas);
// Add a light blue background to the cells containing formulas.
formulaCells.getFormat().getFill().setColor("#ADD8E6");
}
Felder
blanks | Zellen ohne Inhalt. |
conditionalFormats | Alle Zellen mit bedingten Formaten. |
constants | Zellen mit Konstanten |
dataValidations | Zellen mit Validierungskriterien. |
formulas | Zellen mit Formeln |
sameConditionalFormat | Zellen mit dem gleichen bedingten Format wie die erste Zelle im Bereich. |
sameDataValidation | Zellen mit denselben Datenüberprüfungskriterien wie die erste Zelle im Bereich. |
visible | Zellen, die sichtbar sind. |
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Scripts