diff --git a/Examples/AddWorkSheet/AddMultiWorkSheet.ps1 b/Examples/AddWorkSheet/AddMultiWorkSheet.ps1 new file mode 100644 index 0000000..fc0a877 --- /dev/null +++ b/Examples/AddWorkSheet/AddMultiWorkSheet.ps1 @@ -0,0 +1,15 @@ +try {. $PSScriptRoot\..\..\LoadPSD1.ps1} catch {} + +$xlSourcefile = "$env:TEMP\Source.xlsx" +write-host "Save location: $xlSourcefile" + +Remove-Item $xlSourcefile -ErrorAction Ignore + +#Put some simple data in a worksheet and Get an excel package object to represent the file +$TabData1 = 1..5 | Export-Excel $xlSourcefile -WorksheetName 'Tab 1' -AutoSize -AutoFilter + +#Add another tab. Replace the $TabData2 with your data +$TabData2 = 1..10 | Export-Excel $xlSourcefile -WorksheetName 'Tab 2' -AutoSize -AutoFilter + +#Add another tab. Replace the $TabData3 with your data +$TabData3 = 1..15 | Export-Excel $xlSourcefile -WorksheetName 'Tab 3' -AutoSize -AutoFilter -Show diff --git a/README.md b/README.md index 31d2dc3..0b953d7 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,10 @@ Install-Module ImportExcel -scope CurrentUser Install-Module ImportExcel ``` +# What's new 5.4 + +- Thank you to Conrad Agramont, Twitter: [@AGramont](https://twitter.com/@AGramont) for the `AddMultiWorkSheet.ps1` example. Much appreciated! + # What's new 5.3.4 - HotFix for parameter PivotTableSyle should be PivotTableStyle https://github.com/dfinke/ImportExcel/issues/453