mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-12 22:33:15 +00:00
Add newlines
This commit is contained in:
@@ -3,13 +3,13 @@
|
|||||||
```powershell
|
```powershell
|
||||||
$ExcelPkgFile = Open-ExcelPackage -Path "C:\Test\file.xlsx"
|
$ExcelPkgFile = Open-ExcelPackage -Path "C:\Test\file.xlsx"
|
||||||
```
|
```
|
||||||
Contents of file.xlsx:
|
Contents of file.xlsx:
|
||||||

|

|
||||||
### Enumerate the Worksheet to View or Modify the Data
|
### Enumerate the Worksheet to View or Modify the Data
|
||||||
```powershell
|
```powershell
|
||||||
$WorkSheet = $ExcelPkgFile.Workbook.Worksheets["sheet1"].Cells #open excel worksheet cells from worksheet "sheet1"
|
$WorkSheet = $ExcelPkgFile.Workbook.Worksheets["sheet1"].Cells #open excel worksheet cells from worksheet "sheet1"
|
||||||
```
|
```
|
||||||
Visual of Data Structure:
|
Visual of Data Structure:
|
||||||

|

|
||||||
|
|
||||||
Modify a specific value by accessing row/col like a 2D Array:
|
Modify a specific value by accessing row/col like a 2D Array:
|
||||||
|
|||||||
Reference in New Issue
Block a user