mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
11 lines
277 B
PowerShell
11 lines
277 B
PowerShell
try {Import-Module $PSScriptRoot\..\..\ImportExcel.psd1} catch {throw ; return}
|
|
|
|
$f = ".\testExport.xlsx"
|
|
|
|
Remove-Item $f -ErrorAction Ignore
|
|
|
|
.\GenDates.ps1 |
|
|
Export-Excel $f -Show -AutoSize -ConditionalText $(
|
|
New-ConditionalText -ConditionalType NextMonth
|
|
)
|