Mostra formule invece di valori in un foglio di lavoro

Contents
[ ]

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

cose da fare:immagine_alt_testo

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

cose da fare:immagine_alt_testo

// 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");