使用PowerShell将文本文件中的文本插入现有Excel工作表

时间:2016-08-12 00:59:11

标签: excel powershell

我试图将我的文本文件的内容插入到Sheet1上的单元格A1中,但我得到的只是插入的文件名而不是文本文件的内容。

$Path = 'C:\folder\Test.xlsx'
$Text='C:\folder\text.txt'
# Open the Excel document and pull in the 'Play' worksheet
$Excel = New-Object -Com Excel.Application
$Excel.Visible=$true #For troubleshooting purposes only.

$Workbook = $Excel.Workbooks.Open($Path) 
$page = 'Sheet1'
$ws = $Workbook.worksheets | where-object {$_.Name -eq $page}
# Set variables for the worksheet cells, and for navigation

$cells=$ws.Cells
$row=1
$col=1
$cells.item($Row,$col)=$Text
$col++
# Close the workbook and exit Excel
$workbook.Close($true)
$excel.quit()

1 个答案:

答案 0 :(得分:0)

这是因为您将$ Text设置为文件的路径。您必须使用像Get-Content这样的cmdlet实际读取文件的内容。

例如:

$Text = Get-Content 'C:\folder\text.txt'

但是,根据该文本文件的内容,您可能希望以不同的方式执行此操作,否则最终可能会出现混乱的结果。