mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-15 15:53:32 +00:00
added demo
This commit is contained in:
9
Examples/OutTabulator/tryConvertFromExcel.ps1
Normal file
9
Examples/OutTabulator/tryConvertFromExcel.ps1
Normal file
@@ -0,0 +1,9 @@
|
||||
[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
|
||||
Reference in New Issue
Block a user