mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
9 lines
207 B
PowerShell
9 lines
207 B
PowerShell
Import-Module $PSScriptRoot\..\..\ImportExcel.psd1 -Force
|
|
|
|
$xlfile = "$PSScriptRoot\yearlySales.xlsx"
|
|
|
|
$result = Import-Excel -Path $xlfile -WorksheetName *
|
|
|
|
foreach ($sheet in $result.Values) {
|
|
$sheet
|
|
} |