Complete Document

Demonstrates how to create a blank excel file.
This commit is contained in:
Davis Henckel
2021-11-26 10:23:09 -08:00
committed by GitHub
parent 1fd2f422cd
commit d706a10276

View File

@@ -0,0 +1,6 @@
# Create an Empty Excel File
Use an Empty String and Export to an Excel File.
```powershell
#Build an Excel file named: "file.xlsx" containing a worksheet: "MyWorksheet"
"" | Export-Excel -Path "C:\Test\file.xlsx -WorksheetName "MyWorksheet"
```