Update open-excelpackage.md

Small changes to Example 2
This commit is contained in:
Wes Stahler
2022-08-24 21:34:46 -04:00
committed by GitHub
parent ac435fc1e1
commit 4727bb3b2b

View File

@@ -39,8 +39,8 @@ This will create a new file in the temp folder if it doesn't already exist. It t
### EXAMPLE 2
```text
PS\> $excela= Open-ExcelPackage -path "$xlPath" -Password $password
PS\> $sheet1 = $excel.Workbook.Worksheetsa"sheet1" ]
PS\> $excel= Open-ExcelPackage -path "$xlPath" -Password $password
PS\> $sheet1 = $excel.Workbook.Worksheets["sheet1"]
PS\> Set-ExcelRange -Range $sheet1.Cells ["E1:S1048576" ], $sheet1.Cells ["V1:V1048576" ] -NFormat ( [cultureinfo ]::CurrentCulture.DateTimeFormat.ShortDatePattern)
PS\> Close-ExcelPackage $excel -Show
```