This commit is contained in:
dfinke
2016-08-12 17:16:15 -04:00
parent 3efdfd0e0b
commit 3db1473c05
3 changed files with 7 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ Add-Type -Path "$($PSScriptRoot)\EPPlus.dll"
. $PSScriptRoot\Import-Html.ps1
. $PSScriptRoot\Get-Range.ps1
. $PSScriptRoot\TrackingUtils.ps1
. $PSScriptRoot\Copy-ExcelWorkSheet.ps1
if($Host.Version.Major -ge 5) {
. $PSScriptRoot\plot.ps1
@@ -76,7 +77,7 @@ function Import-Excel {
} else {
if(!$Header) {
$Header = foreach ($Column in 1..$Columns) {
$worksheet.Cells[$HeaderRow,$Column].Text
$worksheet.Cells[$HeaderRow,$Column].Value
}
}

View File

@@ -8,6 +8,7 @@ $targetFiles = echo `
*.psm1 `
*.psd1 `
*.dll `
New-ConditionalText.ps1 `
New-ConditionalFormattingIconSet.ps1 `
Export-Excel.ps1 `
Export-ExcelSheet.ps1 `

View File

@@ -28,6 +28,9 @@ iex (new-object System.Net.WebClient).DownloadString('https://raw.github.com/dfi
# What's new
#### 8/12/2016
[Fixed](https://github.com/dfinke/ImportExcel/issues/115) reading the headers from cells, moved from using `Text` property to `Value` property.
#### 7/30/2016
* Added `Copy-ExcelWorksheet`. Let's you copy a work sheet from one Excel workbook to another.