Remove Unnecessary Import & Add Header

Removed unnecessary import-module statement. Added a header to match the styling of other documents.
This commit is contained in:
Davis Henckel
2021-11-28 20:03:07 -08:00
committed by GitHub
parent 5700989321
commit 229b60b25d

View File

@@ -1,8 +1,7 @@
# How to Read an Existing Excel File
## Enumerate the Excel File Contents
```powershell
Import-Module ImportExcel
#Loads the Excel file into a PSCustomObject
#Load the Excel file into a PSCustomObject
$ExcelFile = Import-Excel "C:\Test\file.xlsx" -WorksheetName "Sheet1"
```