mirror of
https://github.com/dfinke/ImportExcel.git
synced 2026-01-08 11:33:14 +00:00
17 lines
347 B
PowerShell
17 lines
347 B
PowerShell
$xlFile = ".\testExport.xlsx"
|
|
|
|
Remove-Item -ErrorAction Ignore $xlFile
|
|
|
|
$ExportOptions = @{
|
|
Path = $xlFile
|
|
Show=$true
|
|
IncludePivotTable=$true
|
|
IncludePivotChart=$true
|
|
PivotRows="Company"
|
|
PivotData="PM"
|
|
ChartType="PieExploded3D"
|
|
}
|
|
|
|
Get-Process |
|
|
Select Company, Name, Handles, PM |
|
|
Export-Excel @ExportOptions |