图表不使用Powershell在Excel中生成当前

时间:2017-10-14 21:18:46

标签: excel powershell graph

我想生成包含以下数据的图表

enter image description here格式如图所示

我希望仅使用上面所示的2列,A列(日期和时间)& B栏(利润)。 A列具有特定的自定义类型:dd-mm-yyyy hh:mm。

下面是生成错误的图表:

enter image description here

图表的预期格式如下: enter image description here

以下是我正在使用的代码:

$wsChart = $wb.WorkSheets.item(1) 
$wsChart.activate()

$wsChart.UsedRange.EntireColumn.Autofit()
$DataforFirstChart = $wsChart.Range("A:B")
$chart = $wsChart.Shapes.AddChart().Chart

$chart.SetSourceData($DataforFirstChart)

$chart.HasTitle = $true

$chart.ChartTitle.Text = "Test Report"
# Save the sheet
$wb.Save()  

$wb.close() 
$excelapp.Quit()

0 个答案:

没有答案