From d706a1027676decb5c1f59488cbf875fb8715db7 Mon Sep 17 00:00:00 2001 From: Davis Henckel <51898571+DavisHenckel@users.noreply.github.com> Date: Fri, 26 Nov 2021 10:23:09 -0800 Subject: [PATCH 1/3] Complete Document Demonstrates how to create a blank excel file. --- FAQ/How to Create an Empty Excel File.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/FAQ/How to Create an Empty Excel File.md b/FAQ/How to Create an Empty Excel File.md index e69de29..b017ac5 100644 --- a/FAQ/How to Create an Empty Excel File.md +++ b/FAQ/How to Create an Empty Excel File.md @@ -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" +``` From 4a09fc3570a24cee23e57d561ce45f7a5cf9e7a2 Mon Sep 17 00:00:00 2001 From: Davis Henckel <51898571+DavisHenckel@users.noreply.github.com> Date: Fri, 26 Nov 2021 10:25:14 -0800 Subject: [PATCH 2/3] Punctuation change --- FAQ/How to Create an Empty Excel File.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ/How to Create an Empty Excel File.md b/FAQ/How to Create an Empty Excel File.md index b017ac5..04335d1 100644 --- a/FAQ/How to Create an Empty Excel File.md +++ b/FAQ/How to Create an Empty Excel File.md @@ -1,5 +1,5 @@ # Create an Empty Excel File -Use an Empty String and Export to an Excel File. +Use an empty string to 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" From 5a444c620b9c93cff6fd6e54f2659adef67e5eb9 Mon Sep 17 00:00:00 2001 From: Davis Henckel <51898571+DavisHenckel@users.noreply.github.com> Date: Fri, 26 Nov 2021 10:25:30 -0800 Subject: [PATCH 3/3] Punctuation change --- FAQ/How to Create an Empty Excel File.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ/How to Create an Empty Excel File.md b/FAQ/How to Create an Empty Excel File.md index 04335d1..7293717 100644 --- a/FAQ/How to Create an Empty Excel File.md +++ b/FAQ/How to Create an Empty Excel File.md @@ -1,5 +1,5 @@ # Create an Empty Excel File -Use an empty string to export to an excel File. +Use an empty string to 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"