This PowerShell Module wraps the .NET EPPlus DLL (included). Easily integrate reading and writing Excel spreadsheets into PowerShell, without launching Excel in the background. You can also automate the creation of Pivot Tables and Charts.
####Powershell V5 and Later You can install ImportExcel directly from the Powershell Gallery
- [Recommended] Install to your personal Powershell Modules folder
Install-Module ImportExcel -scope CurrentUser
- [Requires Elevation] Install for Everyone (computer Powershell Modules folder)
Install-Module ImportExcel
####Powershell V4 and Earlier To install to your personal modules folder (e.g. ~\Documents\WindowsPowerShell\Modules), run:
iex (new-object System.Net.WebClient).DownloadString('https://raw.github.com/dfinke/ImportExcel/master/Install.ps1')
- Added
Copy-ExcelWorksheet
. Let's you copy a work sheet from one Excel workbook to another.
- Fixes
Import-Excel
#68
Attila Mihalicz fixed two issues
- Removing extra spaces after the backtick
- Uninitialized variable $idx leaks into the pipeline when
-TableName
parameter is used
Thanks Attila.
- Pushed 2.2.7 fixed resolve path in Get-ExcelSheetInfo
- Fixed Casting Error in Export-Excel
- For
Import-Excel
change Resolve-Path to return ProviderPath for use with UNC
- Added -UseDefaultCredentials to both
Import-Html
andGet-HtmlTable
- New functions,
Import-UPS
andImport-USPS
. Pass in a valid tracking # and it scrapes the page for the delivery details
Huge thank you to Willie Möller
- He added a version check so the PowerShell Classes don't cause issues for downlevel version of PowerShell
- He also contributed the first Pester tests for the module. Super! Check them out, they'll be the way tests will be implemented going forward
Thanks to Paul Williams for this feature. Now data can be transposed to columns for better charting.
$file = "C:\Temp\ps.xlsx"
rm $file -ErrorAction Ignore
ps |
where company |
select Company,PagedMemorySize,PeakPagedMemorySize |
Export-Excel $file -Show -AutoSize `
-IncludePivotTable `
-IncludePivotChart `
-ChartType ColumnClustered `
-PivotRows Company `
-PivotData @{PagedMemorySize='sum';PeakPagedMemorySize='sum'}
Add -PivotDataToColumn
$file = "C:\Temp\ps.xlsx"
rm $file -ErrorAction Ignore
ps |
where company |
select Company,PagedMemorySize,PeakPagedMemorySize |
Export-Excel $file -Show -AutoSize `
-IncludePivotTable `
-IncludePivotChart `
-ChartType ColumnClustered `
-PivotRows Company `
-PivotData @{PagedMemorySize='sum';PeakPagedMemorySize='sum'} `
-PivotDataToColumn
And here is the new chart view
Made more methods fluent
$t=Get-Range 0 5 .2
$t2=$t|%{$_*$_}
$t3=$t|%{$_*$_*$_}
(New-Plot).
Plot($t,$t, $t,$t2, $t,$t3).
SetChartPosition("i").
SetChartSize(500,500).
Title("Hello World").
Show()
- Thanks to redoz Multi Series Charts are now working
Also check out how you can create a table and then with Excel notation, index into the data for charting "Impressions[A]"
$data = @"
A,B,C,Date
2,1,1,2016-03-29
5,10,1,2016-03-29
"@ | ConvertFrom-Csv
$c = New-ExcelChart -Title Impressions `
-ChartType Line -Header "Something" `
-XRange "Impressions[Date]" `
-YRange @("Impressions[B]","Impressions[A]")
$data |
Export-Excel temp.xlsx -AutoSize -TableName Impressions -Show -ExcelChartDefinition $c
- Added
NumberFormat
parameter
$data |
Export-Excel -Path $file -Show -NumberFormat '[Blue]$#,##0.00;[Red]-$#,##0.00'
- Added
Get-Range
,New-Plot
and Plot Cos example - Updated EPPlus DLL. Allows markers to be changed and colored
- Handles and warns if auto name range names are also valid Excel ranges
- Added
Header
andFirstDataRow
forImport-Html
- Added
GreaterThan
,GreaterThanOrEqual
,LessThan
,LessThanOrEqual
toNew-ConditionalText
echo 489 668 299 777 860 151 119 497 234 788 |
Export-Excel c:\temp\test.xlsx -Show `
-ConditionalText (New-ConditionalText -ConditionalType GreaterThan 525)
Import-Html
using Lee Holmes Extracting Tables from PowerShell’s Invoke-WebRequest
- Added Conditional Text types of
Equal
andNotEqual
- Phone #'s like '+33 011 234 34' will be now be handled correctly
$file = "C:\Temp\passthru.xlsx"
rm $file -ErrorAction Ignore
$xlPkg = $(
New-PSItem north 10
New-PSItem east 20
New-PSItem west 30
New-PSItem south 40
) | Export-Excel $file -PassThru
$ws=$xlPkg.Workbook.Worksheets[1]
$ws.Cells["A3"].Value = "Hello World"
$ws.Cells["B3"].Value = "Updating cells"
$ws.Cells["D1:D5"].Value = "Data"
$ws.Cells.AutoFitColumns()
$xlPkg.Save()
$xlPkg.Dispose()
Invoke-Item $file
- Added
Conditional Text Formatting
. Boe Prox posted about HTML Reporting, Part 2: Take Your Reporting a Step Further and colorized cells. Great idea, now part of the PowerShell Excel module.
- Added
Get-ExcelSheetInfo
- Great contribution from Johan Åkerström check him out on GitHub and Twitter
- Added
NoLegend
,Show-Category
,ShowPercent
for all charts including Pivot Charts - Updated PieChart, BarChart, ColumnChart and Line chart to work with the pipeline and added
NoLegend
,Show-Category
,ShowPercent
These new features open the door for really sophisticated work sheet creation.
Stay tuned for a blog post and examples.
Quick List
- StartRow, StartColumn for placing data anywhere in a sheet
- New-ExcelChart - Add charts to a sheet, multiple series for a chart, locate the chart anywhere on the sheet
- AutoNameRange, Use functions and/or calculations in a cell
- Quick charting using PieChart, BarChart, ColumnChart and more
Big bug fix for version 3.0 PowerShell folks!
This technique fails in 3.0 and works in 4.0 and later.
$m="substring"
"hello".$m(2,1)
Adding .invoke
works in 3.0 and later.
$m="substring"
"hello".$m.invoke(2,1)
A big thank you to DarkLite1 for adding the help to Export-Excel.
Added -HeaderRow
parameter. Sometimes the heading does not start in Row 1.
Fixes Export-Excel generates corrupt Excel file
Import-Excel
has a new parameter NoHeader
. If data in the sheet does not have headers and you don't want to supply your own, Import-Excel
will generate the property name.
Import-Excel
now returns .Value
rather than .Text
Merged ValidateSet for Encoding and Extension. Thank you Irwin Strachan.
Export-Excel can now handle data that is not an object
echo a b c 1 $true 2.1 1/1/2015 | Export-Excel c:\temp\test.xlsx -Show
Or
dir -Name | Export-Excel c:\temp\test.xlsx -Show
Hide worksheets Got a great request from forensicsguy20012004 to hide worksheets. You create a few pivotables, generate charts and then pivotable worksheets don't need to be visible.
Export-Excel
now has a -HideSheet
parameter that takes and array of worksheet names and hides them.
Here, you create four worksheets named PM
,Handles
,Services
and Files
.
The last line creates the Files
sheet and then hides the Handles
,Services
sheets.
$p = Get-Process
$p|select company, pm | Export-Excel $xlFile -WorkSheetname PM
$p|select company, handles| Export-Excel $xlFile -WorkSheetname Handles
Get-Service| Export-Excel $xlFile -WorkSheetname Services
dir -File | Export-Excel $xlFile -WorkSheetname Files -Show -HideSheet Handles, Services
Note There is a bug in EPPlus that does not let you hide the first worksheet created. Hopefully it'll resolved soon.
Added Conditional formatting. See TryConditional.ps1 as an example.
Or, check out the short "How To" video.
- Now import Excel sheets even if the file is open in Excel. Thank you Francois Lachance-Guillemette
- For -PivotRows you can pass a
hashtable
with the name of the property and the type of calculation.Sum
,Average
,Max
,Min
,Product
,StdDev
,StdDevp
,Var
,Varp
Get-Service |
Export-Excel "c:\temp\test.xlsx" `
-Show `
-IncludePivotTable `
-PivotRows status `
-PivotData @{status='count'}
6/16/2015 (Thanks Justin)
- Improvements to PivotTable overwriting
- Added two parameters to Export-Excel
- RangeName - Turns the data piped to Export-Excel into a named range.
- TableName - Turns the data piped to Export-Excel into an excel table.
Examples
Get-Process|Export-Excel foo.xlsx -Verbose -IncludePivotTable -TableName "Processes" -Show
Get-Process|Export-Excel foo.xlsx -Verbose -IncludePivotTable -RangeName "Processes" -Show
- Fixed null header problem
- Added three parameters:
- FreezeTopRow - Freezes the first row of the data
- AutoFilter - Enables filtering for the data in the sheet
- BoldTopRow - Bolds the top row of data, the column headers
Example
Get-CimInstance win32_service |
select state, accept*, start*, caption |
Export-Excel test.xlsx -Show -BoldTopRow -AutoFilter -FreezeTopRow -AutoSize
- Published to PowerShell Gallery. In PowerShell v5 use
Find-Module importexcel
thenFind-Module importexcel | Install-Module
- datetime properties were displaying as ints, now are formatted
- Now you can create multiple Pivot tables in one pass
- Thanks to pscookiemonster, he submitted a repro case to the EPPlus CodePlex project and got it fixed
$ps = ps
$ps |
Export-Excel .\testExport.xlsx -WorkSheetname memory `
-IncludePivotTable -PivotRows Company -PivotData PM `
-IncludePivotChart -ChartType PieExploded3D
$ps |
Export-Excel .\testExport.xlsx -WorkSheetname handles `
-IncludePivotTable -PivotRows Company -PivotData Handles `
-IncludePivotChart -ChartType PieExploded3D -Show
- Included and embellished Claus Nielsen function to take all sheets in an Excel file workbook and create a text file for each
ConvertFrom-ExcelSheet
- Renamed
Export-MultipleExcelSheets
toConvertFrom-ExcelSheet
- You can add a title to the Excel "Report"
Title
,TitleFillPattern
,TitleBold
,TitleSize
,TitleBackgroundColor
- Thanks to Irwin Strachan for this and other great suggestions, testing and more
- Renamed
AutoFitColumns
toAutoSize
- Implemented
Export-MultipleExcelSheets
- Implemented
-Password
for a worksheet - Replaced
-Force
switch with-NoClobber
switch - Added examples for
Get-Help
- If Pivot table is requested, that sheet becomes the tab selected
- Implemented exporting data to named sheets via the -WorkSheename parameter.
gsv | Export-Excel .\test.xlsx -WorkSheetname Services
dir -file | Export-Excel .\test.xlsx -WorkSheetname Files
ps | Export-Excel .\test.xlsx -WorkSheetname Processes -IncludePivotTable -Show -PivotRows Company -PivotData PM
Reads each sheet in TestSheets.xlsx and outputs it to the data directory as the sheet name with the extension .txt
ConvertFrom-ExcelSheet .\TestSheets.xlsx .\data
Reads and outputs sheets like Sheet10 and Sheet20 form TestSheets.xlsx and outputs it to the data directory as the sheet name with the extension .txt
ConvertFrom-ExcelSheet .\TestSheets.xlsx .\data sheet?0
You can set the pattern, size and of if the title is bold.
$p=@{
Title = "Process Report as of $(Get-Date)"
TitleFillPattern = "LightTrellis"
TitleSize = 18
TitleBold = $true
Path = "$pwd\testExport.xlsx"
Show = $true
AutoSize = $true
}
Get-Process |
Where Company | Select Company, PM |
Export-Excel @p
$p = Get-Process
$DataToGather = @{
PM = {$p|select company, pm}
Handles = {$p|select company, handles}
Services = {gsv}
Files = {dir -File}
Albums = {(Invoke-RestMethod http://www.dougfinke.com/powershellfordevelopers/albums.js)}
}
Export-MultipleExcelSheets -Show -AutoSize .\testExport.xlsx $DataToGather
NOTE If the sheet exists when using -WorkSheetname parameter, it will be deleted and then added with the new data.
You can also find EPPLus on Nuget.
- Using
-IncludePivotTable
, if that pivot table name exists, you'll get an error.- Investigating a solution
- Workaround delete the Excel file first, then do the export