mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
9 lines
368 B
PowerShell
9 lines
368 B
PowerShell
[CmdletBinding()]
|
|
param($outFile = "$PSScriptRoot\targetout.html")
|
|
|
|
$columnOptions = @()
|
|
|
|
$columnOptions += New-ColumnOption -ColumnName Progress -formatter progress
|
|
$columnOptions += New-ColumnOption -ColumnName Activity -formatter lineFormatter
|
|
|
|
ConvertFrom-Excel -ExcelFile $PSScriptRoot\test.xlsx -outFile $PSScriptRoot\targetout.html -columnOptions $columnOptions |