diff --git a/FAQ/How to Read an Existing Excel File.md b/FAQ/How to Read an Existing Excel File.md index 2ea6e08..bb869ca 100644 --- a/FAQ/How to Read an Existing Excel File.md +++ b/FAQ/How to Read an Existing Excel File.md @@ -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" ```