mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
31 lines
1.1 KiB
PowerShell
31 lines
1.1 KiB
PowerShell
try {Import-Module $PSScriptRoot\..\..\ImportExcel.psd1} catch {throw ; return}
|
|
|
|
$f = "$env:TEMP\testExport.xlsx"
|
|
|
|
Remove-Item $f -ErrorAction Ignore
|
|
|
|
$data = $(
|
|
|
|
New-PSItem North 111 @( 'Region', 'Amount' )
|
|
New-PSItem East 111
|
|
New-PSItem West 122
|
|
New-PSItem South 200
|
|
|
|
New-PSItem NorthEast 103
|
|
New-PSItem SouthEast 145
|
|
New-PSItem SouthWest 136
|
|
New-PSItem South 127
|
|
|
|
New-PSItem NorthByNory 100
|
|
New-PSItem NothEast 110
|
|
New-PSItem Westerly 120
|
|
New-PSItem SouthWest 118
|
|
)
|
|
# in this example instead of doing $variable = New-Conditional text <parameters> .... ; Export-excel -ConditionalText $variable <other parameters>
|
|
# the syntax is used is Export-excel -ConditionalText (New-Conditional text <parameters>) <other parameters>
|
|
|
|
|
|
#$data | Export-Excel $f -Show -AutoSize -ConditionalText (New-ConditionalText -ConditionalType AboveAverage)
|
|
$data | Export-Excel $f -Show -AutoSize -ConditionalText (New-ConditionalText -ConditionalType BelowAverage)
|
|
#$data | Export-Excel $f -Show -AutoSize -ConditionalText (New-ConditionalText -ConditionalType TopPercent)
|