mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
12 lines
420 B
PowerShell
12 lines
420 B
PowerShell
try {Import-Module $PSScriptRoot\..\..\ImportExcel.psd1} catch {throw ; return}
|
|
|
|
#Get rid of pre-exisiting sheet
|
|
$xlSourcefile = "$env:TEMP\ImportExcelExample.xlsx"
|
|
Write-Verbose -Verbose -Message "Save location: $xlSourcefile"
|
|
Remove-Item $xlSourcefile -ErrorAction Ignore
|
|
|
|
.\GenDates.ps1 |
|
|
Export-Excel $xlSourcefile -Show -AutoSize -ConditionalText $(
|
|
New-ConditionalText -ConditionalType ThisWeek
|
|
)
|