使用PSexcel如何使用powershell获取结果并将多列拆分为一列

使用PSexcel如何使用powershell获取结果并将多列拆分为一列,excel,powershell-4.0,Excel,Powershell 4.0,好的,我正在使用powershell的PSExcel模块。我已经从输入excel文件中获得了所需的数据,但我正在尝试做的是选取4列,并将它们转换为总共2列 $rbi = get-Workbook $excel | Get-Worksheet -Name "Cable Run List" #get-cellvalue tells excel the coordinates of cells you need collected from worksheet within wo

好的,我正在使用powershell的PSExcel模块。我已经从输入excel文件中获得了所需的数据,但我正在尝试做的是选取4列,并将它们转换为总共2列

$rbi = get-Workbook $excel | Get-Worksheet -Name "Cable Run List"

#get-cellvalue tells excel the coordinates of cells you need collected from worksheet within workbook.
#-Header names the columns grabbed from the RBI
$olabels = Get-CellValue $rbi -Coordinates y12:z335 -Header Source1, Source2
$dlabels = Get-CellValue $rbi -Coordinates aa12:ab335 -Header Destination1, Destination2

$olabels
$dlabels

    
#this exports the labels into a xlsx excel format.
Export-XLSX -Path "C:\Users\fouched\Desktop\TestScript\test.xlsx" -InputObject $labels
我输入的文件有多列和多行,但我只需要输入excil文件的最后4列。前两个需要首先出现,但我需要第二组列位于第一组列之后