Ottieni la data di aggiornamento della tabella pivot e aggiorna le informazioni in base a chi

Contents
[ ]

Tabella pivot.Aggiorna data restituisce la data dell’ultimo aggiornamento del rapporto di tabella pivot. Allo stesso modoTabella pivot.RefreshByWho La proprietà restituisce il nome dell’utente che ha aggiornato il report l’ultima volta. L’esempio seguente dimostra questa funzione e il file di esempio può essere scaricato dal seguente collegamento.

SourcePivotTable.xlsx

Codice d’esempio

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Create workbook object from source excel file
Workbook workbook = new Workbook(sourceDir + "sourcePivotTable.xlsx");
// Access first worksheet
Worksheet worksheet = workbook.Worksheets[0];
// Access first pivot table inside the worksheet
PivotTable pivotTable = worksheet.PivotTables[0];
// Access pivot table refresh by who
Console.WriteLine("Pivot table refresh by who = " + pivotTable.RefreshedByWho);
// Access pivot table refresh date
Console.WriteLine("Pivot table refresh date = " + pivotTable.RefreshDate);