diff --git a/README.md b/README.md index 9f66d18..3befa80 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,9 @@ Know Issues What's new - +#### 4/20/2015 +* Included and embellished [Claus Nielsen](https://github.com/Claustn) function to take all sheets in an Excel file workbook and create a text file for each `ConvertFrom-ExcelSheet` + #### 4/13/2015 * You can add a title to the Excel "Report" `Title`, `TitleFillPattern`, `TitleBold`, `TitleSize`, `TitleBackgroundColor` * Thanks to [Irwin Strachan](http://pshirwin.wordpress.com) for this and other great suggestions, testing and more @@ -33,6 +36,16 @@ Examples `ps | Export-Excel .\test.xlsx -WorkSheetname Processes -IncludePivotTable -Show -PivotRows Company -PivotData PM` +#### Convert (All or Some) Excel Sheets to Text files + +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 + #### Example Adding a Title You can set the pattern, size and of if the title is bold.