mirror of
https://github.com/dfinke/ImportExcel.git
synced 2026-01-04 17:43:48 +00:00
15 lines
567 B
Markdown
15 lines
567 B
Markdown
# How to Read an existing Excel File
|
|
|
|
```powershell
|
|
Import-Module ImportExcel
|
|
#Loads the Excel file into a is a custom PS Object
|
|
$ExcelFile = Import-Excel "C:\Test\file.xlsx" -WorksheetName "Sheet1"
|
|
```
|
|
|
|
## Visual of Data Structure
|
|
The File C:\Test\file.xlsx contains
|
|

|
|
|
|
After Loading this data into ```$ExcelFile``` the data is stored like:
|
|

|