[]
Gets the name of the person who last refreshed the PivotTable cache.
Use this property to retrieve the refresh user recorded in the cache metadata.
string RefreshName { get; }
ReadOnly Property RefreshName As String
worksheet.Range["A1:B3"].Value = new object[,] {
{"Name", "Score"},
{"Alice", 100},
{"Bob", 200}
};
IPivotCache pivotCache = workbook.PivotCaches.Create(worksheet.Range["A1:B3"]);
pivotCache.Refresh();
string refreshName = pivotCache.RefreshName;