From 459cda73a4707e7a14db54e30841ed5357d24828 Mon Sep 17 00:00:00 2001 From: dfinke Date: Wed, 17 Feb 2016 20:41:44 -0500 Subject: [PATCH] Updated --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9a6a0c3..d9223cc 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,6 @@ $xlPkg = $( New-PSItem south 40 ) | Export-Excel $file -PassThru - $ws=$xlPkg.Workbook.Worksheets[1] $ws.Cells["A3"].Value = "Hello World" @@ -38,12 +37,14 @@ $ws.Cells["D1:D5"].Value = "Data" $ws.Cells.AutoFitColumns() -$xlPkg.Save() +$xlPkg.Save() $xlPkg.Dispose() - + Invoke-Item $file ``` +## Result +![](https://raw.githubusercontent.com/dfinke/ImportExcel/master/images/PassThru.png) Known Issues -