From 229b60b25d80557454f134089241b87db26b2d27 Mon Sep 17 00:00:00 2001 From: Davis Henckel <51898571+DavisHenckel@users.noreply.github.com> Date: Sun, 28 Nov 2021 20:03:07 -0800 Subject: [PATCH] Remove Unnecessary Import & Add Header Removed unnecessary import-module statement. Added a header to match the styling of other documents. --- FAQ/How to Read an Existing Excel File.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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" ```