mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-12 22:33:15 +00:00
fixed spelling #285
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
.PARAMETER Path
|
.PARAMETER Path
|
||||||
Path to a new or existing .XLSX file
|
Path to a new or existing .XLSX file
|
||||||
.PARAMETER ExcelPackage
|
.PARAMETER ExcelPackage
|
||||||
An object representing an Excel Package - usually this is returned by specifying -Passthru alllowing multiple commands to work on the same Workbook without saving and reloading each time.
|
An object representing an Excel Package - usually this is returned by specifying -Passthru allowing multiple commands to work on the same Workbook without saving and reloading each time.
|
||||||
.PARAMETER WorkSheetName
|
.PARAMETER WorkSheetName
|
||||||
The name of a sheet within the workbook - "Sheet1" by default
|
The name of a sheet within the workbook - "Sheet1" by default
|
||||||
.PARAMETER ClearSheet
|
.PARAMETER ClearSheet
|
||||||
@@ -834,10 +834,10 @@
|
|||||||
$pivotTable.DataOnRows = $false
|
$pivotTable.DataOnRows = $false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if($NoTotalsInPivot) {
|
if($NoTotalsInPivot) {
|
||||||
$pivotTable.RowGrandTotals = $false
|
$pivotTable.RowGrandTotals = $false
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($IncludePivotChart) {
|
if ($IncludePivotChart) {
|
||||||
$chart = $wsPivot.Drawings.AddChart('PivotChart', $ChartType, $pivotTable)
|
$chart = $wsPivot.Drawings.AddChart('PivotChart', $ChartType, $pivotTable)
|
||||||
|
|||||||
Reference in New Issue
Block a user