My .xlsx file contains a Pivot Table. But I can't get access to it via `Worksheet.PivotTables` property.
This is my sample code:
```
using (var excel = new XLWorkbook(sourceFile, XLEventTracking.Enabled))
{
var pivots = excel.Worksheets.SelectMany(ws => ws.PivotTables).ToList();
// pivots.Count == 0
}
```
The version of the ClosedXML library is 0.75.0 (got from NuGet)
The example of .xml file is attached.
Comments: (I'm using version 0.76 from Nuget but no change in this bug)
This is my sample code:
```
using (var excel = new XLWorkbook(sourceFile, XLEventTracking.Enabled))
{
var pivots = excel.Worksheets.SelectMany(ws => ws.PivotTables).ToList();
// pivots.Count == 0
}
```
The version of the ClosedXML library is 0.75.0 (got from NuGet)
The example of .xml file is attached.
Comments: (I'm using version 0.76 from Nuget but no change in this bug)