mirror of
https://github.com/dfinke/ImportExcel.git
synced 2026-01-06 10:33:19 +00:00
Readme fix
This commit is contained in:
35
README.md
35
README.md
@@ -1,3 +1,16 @@
|
||||
## Donation
|
||||
|
||||
If this project helped you reduce the time to get your job done, let me know.
|
||||
|
||||
<!-- BADGES -->
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UCSB9YVPFSNCY)
|
||||
|
||||

|
||||
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
<p align="center">
|
||||
<a href="https://ci.appveyor.com/project/dfinke/importexcel/branch/master"><img src="https://ci.appveyor.com/api/projects/status/21hko6eqtpccrkba/branch/master?svg=true"></a>
|
||||
</p>
|
||||
@@ -11,6 +24,8 @@ src="https://img.shields.io/powershellgallery/dt/ImportExcel.svg"></a>
|
||||
src="https://img.shields.io/powershellgallery/v/ImportExcel.svg"></a>
|
||||
</p>
|
||||
|
||||
<!-- /BADGES -->
|
||||
|
||||
PowerShell Import-Excel
|
||||
-
|
||||
|
||||
@@ -37,24 +52,6 @@ Install-Module ImportExcel -scope CurrentUser
|
||||
Install-Module ImportExcel
|
||||
```
|
||||
|
||||
#### PowerShell V4 and Earlier
|
||||
To install to your personal modules folder (e.g. ~\Documents\WindowsPowerShell\Modules), run:
|
||||
|
||||
```PowerShell
|
||||
iex (new-object System.Net.WebClient).DownloadString('https://raw.github.com/dfinke/ImportExcel/master/Install.ps1')
|
||||
```
|
||||
|
||||
|
||||
# New to 25th July
|
||||
- Added color parameter completer to a few places where it was missing (Add-ConditionalFormatting/PatternColor New-ConditionalText PatternColor&BackgroundColor)
|
||||
- Changed charting.ps1 and examples\charts\*.ps1 to use New-ExcelChartDefinition instead of New-ExcelChart
|
||||
- Quick charts in Export-excel were too wide (now 800 pixels instead of 1200), and now support ShowPercent, ShowCategory and NoLegend Parameters
|
||||
- Fixed bug in Add-ExcelChart where XAxisPosition and YAxisPostion would not be set correctly
|
||||
- Fixed bug in Set-Format where enums with a value of zero, or zero numbers would not be set; added functionality to set-format to support -bold:$false -italic:$false etc. (see #400)
|
||||
- Changed HideSheet in Export-Excel to support wildcards, and added UnhideSheet.
|
||||
- Added returnRange support to set-Column and Set-row
|
||||
- Added tests for better coverage (now at >80% average - set-row/colum set-format less than 80%) , and tweaked some tests to use few rows and/or columns for speed
|
||||
|
||||
# What's new to 18th July 18
|
||||
- Moved chart creation into its own function (Add-Excel chart) within Export-Excel.ps1. Renamed New-Excelchart to New-ExcelChartDefinition to make it clearer that it is not making anything in the workbook (but for compatibility put an alias of New-ExcelChart in so existing code does not break). Found that -Header does nothing, so it isn't Add-Excel chart and there is a message that does nothing in New-ExcelChartDefinition .
|
||||
- Added -BarChart -ColumnChart -LineChart -PieChart parameters to Export-Excel for quick charts without giving a full chart definition.
|
||||
@@ -874,4 +871,4 @@ You can also find EPPLus on [Nuget](https://www.nuget.org/packages/EPPlus/).
|
||||
|
||||
* 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
|
||||
* *Workaround* delete the Excel file first, then do the export
|
||||
Reference in New Issue
Block a user