Calcolo della formula di matrice delle tabelle di dati
Contents
[
Hide
]
È possibile creare una tabella dati in Microsoft Excel utilizzando Dati > Analisi what-if > Tabella dati…. Aspose.Cells consente ora di calcolare la formula di matrice di una tabella dati. Si prega di utilizzareWorkbook.CalculateFormula() come normale per il calcolo di qualsiasi tipo di formule.
Nel seguente codice di esempio, abbiamo usato ilfile excel di origine . Se modifichi il valore della cella B1 a 100, i valori della tabella dati che sono riempiti con il colore giallo diventeranno 120 come mostrato nelle immagini seguenti. Il codice di esempio genera il fileuscita PDF.
Ecco il codice di esempio utilizzato per generare il fileuscita PDF dalfile excel di origine. Si prega di leggere i commenti per ulteriori informazioni.
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-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook from source excel file | |
Workbook workbook = new Workbook(dataDir + "DataTable.xlsx"); | |
// Access first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// When you will put 100 in B1, then all Data Table values formatted as Yellow will become 120 | |
worksheet.Cells["B1"].PutValue(100); | |
// Calculate formula, now it also calculates Data Table array formula | |
workbook.CalculateFormula(); | |
// Save the workbook in pdf format | |
workbook.Save(dataDir + "output_out.pdf"); |