mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-14 23:33:18 +00:00
18 lines
514 B
PowerShell
18 lines
514 B
PowerShell
$xlFile = "c:\temp\testCF.xlsx"
|
|
rm $xlFile -ErrorAction Ignore
|
|
|
|
$data = Get-Process | where Company | select Company,pm,handles,name
|
|
|
|
$cfHandles = New-ConditionalFormattingIconSet `
|
|
-Address "C:C" `
|
|
-ConditionalFormat ThreeIconSet `
|
|
-IconType Flags -Reverse
|
|
|
|
$cfPM = New-ConditionalFormattingIconSet `
|
|
-Address "B:B" `
|
|
-ConditionalFormat FourIconSet `
|
|
-Reverse -IconType TrafficLights
|
|
|
|
|
|
$data |
|
|
Export-Excel -AutoSize -AutoFilter -ConditionalFormat $cfHandles, $cfPM -Path $xlFile -Show |