Mostra formule invece di valori in un foglio di lavoro
Contents
[
Hide
]
È possibile mostrare formule invece di valori calcolati in Microsoft Excel utilizzando tMostra formule opzione dalFormulenastro. Quando vengono visualizzate le formule, Microsoft Excel visualizza le formule nel foglio di lavoro. Puoi ottenere la stessa cosa usando Aspose.Cells.
Aspose.Cells fornisce aWorksheet.setShowFormulas() proprietà. Imposta questo suVEROper impostare Microsoft Excel per visualizzare le formule.
L’immagine seguente mostra il foglio di lavoro che ha una formula nella cella A3: =Sum(A1:A2).
Foglio di lavoro con formula nella cella A3
L’immagine seguente mostra la formula invece del valore calcolato, abilitata impostando ilWorksheet.setShowFormulas() proprietà aVERO con Aspose.Cells.
Il foglio di lavoro ora mostra la formula invece del valore calcolato
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getDataDir(ShowFormulas.class); | |
// Load the source workbook | |
Workbook workbook = new Workbook(dataDir + "source.xlsx"); | |
// Access the first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Show formulas of the worksheet | |
worksheet.setShowFormulas(true); | |
// Save the workbook | |
workbook.save(dataDir + "out.xlsx"); |