Skip to content

Commit

Permalink
Updated to include ConvertTo-ExcelXlsx
Browse files Browse the repository at this point in the history
  • Loading branch information
dfinke committed Jul 3, 2017
1 parent c39a012 commit b90087b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ImportExcel.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'ImportExcel.psm1'

# Version number of this module.
ModuleVersion = '3.0.0'
ModuleVersion = '3.0.1'

# ID used to uniquely identify this module
GUID = '60dd4136-feff-401a-ba27-a84458c57ede'
Expand Down
1 change: 1 addition & 0 deletions ImportExcel.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Add-Type -Path "$($PSScriptRoot)\EPPlus.dll"
. $PSScriptRoot\Set-CellStyle.ps1
. $PSScriptRoot\ConvertFromExcelData.ps1
. $PSScriptRoot\ConvertFromExcelToSQLInsert.ps1
. $PSScriptRoot\ConvertToExcelXlsx.ps1

if($PSVersionTable.PSVersion.Major -ge 5) {
. $PSScriptRoot\plot.ps1
Expand Down
1 change: 1 addition & 0 deletions InstallModule.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ $targetFiles = echo `
Set-CellStyle.ps1 `
ConvertFromExcelToSQLInsert.ps1 `
ConvertFromExcelData.ps1 `
ConvertToExcelXlsx.ps1 `
plot.ps1

Get-ChildItem $targetFiles |
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ iex (new-object System.Net.WebClient).DownloadString('https://raw.github.com/dfi
```

# What's new
#### 7/3/2017
Thanks to [Mikkel Nordberg](https://www.linkedin.com/in/mikkelnordberg). He contributed a `ConvertTo-ExcelXlsx`. To use it, Excel needs to be installed. I converts older Excel files `xls` to 'xlsx'.

#### 6/15/2017
Huge thank you to [DarkLite1](https://github.com/DarkLite1)! Refactoring of code, adding help, adding features, fixing bugs. Specifically this long outstanding one:

Expand Down

0 comments on commit b90087b

Please sign in to comment.