Last active
April 27, 2018 17:53
-
-
Save PrzemyslawKlys/a5e13a588a3d84c735fb2fedfa01f92c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install-Module ImportExcel | |
Import-Module ImportExcel | |
$file = Import-Excel -Path "Book1.xlsx" | |
$test = @() | |
foreach ($l in $file) { | |
$test += "$($l.Name) $($l.Surname)" | |
} | |
$test | Export-Excel -Path "Book-Exported.xlsx" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment