Files
ImportExcel/Examples/ConvertFrom/ConvertFrom.ps1
2017-06-15 19:56:36 -04:00

13 lines
313 B
PowerShell

ConvertFrom-ExcelToSQLInsert People .\testSQLGen.xlsx
ConvertFrom-ExcelData .\testSQLGen.xlsx {
param($propertyNames, $record)
$reportRecord = @()
foreach ($pn in $propertyNames) {
$reportRecord += "{0}: {1}" -f $pn, $record.$pn
}
$reportRecord +=""
$reportRecord -join "`r`n"
}