Merge branch 'master' of https://github.com/dfinke/ImportExcel into add-helper-functions

This commit is contained in:
dfinke
2022-04-30 08:21:18 -04:00
13 changed files with 263 additions and 89 deletions

View File

@@ -0,0 +1,7 @@
Import-Module $PSScriptRoot\..\..\ImportExcel.psd1 -Force
$xlfile = "$PSScriptRoot\yearlySales.xlsx"
$result = Import-Excel $xlfile * -NotAsDictionary
$result | Measure-Object

View File

@@ -0,0 +1,9 @@
Import-Module $PSScriptRoot\..\..\ImportExcel.psd1 -Force
$xlfile = "$PSScriptRoot\yearlySales.xlsx"
$result = Import-Excel $xlfile *
foreach ($sheet in $result.Values) {
$sheet
}

Binary file not shown.