From efb9e158b5dc44a22dee0a3c8ecb3134a68c0350 Mon Sep 17 00:00:00 2001 From: DarkLite1 Date: Thu, 28 Sep 2017 14:21:55 +0200 Subject: [PATCH] Added help text --- ImportExcel.psm1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ImportExcel.psm1 b/ImportExcel.psm1 index 9219740..decf817 100644 --- a/ImportExcel.psm1 +++ b/ImportExcel.psm1 @@ -80,6 +80,9 @@ Function Import-Excel { When the parameters ‘-NoHeader’ and ‘-HeaderName’ are not provided, this row will contain the column headers that will be used as property names. When one of both parameters are provided, the property names are automatically created and this row will be treated as a regular row containing data. + .PARAMETER Password + Accepts a string that will be used to open a password protected Excel file. + .EXAMPLE Import data from an Excel worksheet. One object is created for each row. The property names of the objects consist of the column names defined in the first row. In case a column doesn’t have a column header (usually in row 1 when ‘-StartRow’ is not used), then the unnamed columns will be skipped and the data in those columns will not be imported.