我有一个PowerShell脚本,可以将.csv文件转换为.xlsx,但是现在我还有一个附加要求,就是对file.Column“ G”中的特定列进行排序(从最低到最高)。
下面是我现有的代码。
Function conversion($inputCSV,$outputXLSX)
{
### Create a new Excel Workbook with one empty sheet
$excel = New-Object -ComObject excel.application
$workbook = $excel.Workbooks.Add(1)
$worksheet = $workbook.worksheets.Item(1)
### Build the QueryTables.Add command
### QueryTables does the same as when clicking "Data » From Text" in Excel
$TxtConnector = ("TEXT;" + $inputCSV)
$Connector =$worksheet.QueryTables.add($TxtConnector,$worksheet.Range("A1"))
$query = $worksheet.QueryTables.item($Connector.name)
### Set the delimiter (, or ;) according to your regional settings
$query.TextFileOtherDelimiter = $Excel.Application.International(5)
### Set the format to delimited and text for every column
### A trick to create an array of 2s is used with the preceding comma
$query.TextFileParseType = 1
$query.TextFileColumnDataTypes = ,2 * $worksheet.Cells.Columns.Count
$query.AdjustColumnWidth = 1
### Execute & delete the import query
$query.Refresh()
$query.Delete()
### Save & close the Workbook as XLSX. Change the output extension for Excel 2003
$Workbook.SaveAs($outputXLSX,51)
$excel.Quit()
}
$inputCSV= "C:\Users\Desktop\Book2.csv"
$outputXLSX = "C:\Users\Desktop\Book2_sorted.xlsx"
conversion $inputCSV,$outputXLSX
答案 0 :(得分:0)
我建议您注意输入Get-Help -Name Sort-Object -Full
可获得的信息。假设出于讨论目的,您的G列在CSV文件中的标题为“ G”,那么您需要在
Import-CSV -Path $inputcsv | Sort-Object -Property G | Export-CSV -Append -Path $sortedcsv -NoTypeInformation
,然后将$ sortedcsv传递到您的工作簿构建例程中。