From 5969bba1692c969359b5718c8d80f2093e479ddc Mon Sep 17 00:00:00 2001 From: dfinke Date: Tue, 2 Jan 2018 16:37:44 -0500 Subject: [PATCH] updated and answers issue #273 --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fb1a242..6e953d5 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,17 @@ iex (new-object System.Net.WebClient).DownloadString('https://raw.github.com/dfi # What's new -#### 12/2017 +#### 1/1/2018 +* Added switch `[Switch]$NoTotalsInPivot`. Allows hiding of the row totals in the pivot table. +Thanks you to [jameseholt](https://github.com/jameseholt) for the request. + +```powershell + get-process | where Company | select Company, Handles, WorkingSet | + export-excel C:\temp\testColumnGrand.xlsx ` + -Show -ClearSheet -KillExcel ` + -IncludePivotTable -PivotRows Company -PivotData @{"Handles"="average"} -NoTotalsInPivot +``` + * Fixed when using certain a `ChartType` for the Pivot Table Chart, would throw an error * Fixed - when you specify a file, and the directory does not exit, it now creates it