From 848177c3581cba00e0271818b2b24c8c6f69c57c Mon Sep 17 00:00:00 2001 From: dfinke Date: Sat, 10 Feb 2018 20:14:02 -0500 Subject: [PATCH] fixed spelling #285 --- Export-Excel.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Export-Excel.ps1 b/Export-Excel.ps1 index f35ca21..9de6d19 100644 --- a/Export-Excel.ps1 +++ b/Export-Excel.ps1 @@ -8,7 +8,7 @@ .PARAMETER Path Path to a new or existing .XLSX file .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 The name of a sheet within the workbook - "Sheet1" by default .PARAMETER ClearSheet @@ -834,10 +834,10 @@ $pivotTable.DataOnRows = $false } } - + if($NoTotalsInPivot) { $pivotTable.RowGrandTotals = $false - } + } if ($IncludePivotChart) { $chart = $wsPivot.Drawings.AddChart('PivotChart', $ChartType, $pivotTable)