mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
18 lines
476 B
PowerShell
18 lines
476 B
PowerShell
try {. $PSScriptRoot\..\..\LoadPSD1.ps1} catch {}
|
|
|
|
Remove-Item temp.xlsx -ErrorAction Ignore
|
|
|
|
$data = @"
|
|
A,B,C,Date
|
|
2,1,1,2016-03-29
|
|
5,10,1,2016-03-29
|
|
"@ | ConvertFrom-Csv
|
|
|
|
$c = New-ExcelChart -Title Impressions `
|
|
-ChartType Line -Header "Something" `
|
|
-XRange "Impressions[Date]" `
|
|
-YRange @("Impressions[B]","Impressions[A]") `
|
|
-SeriesHeader 'B data','A data'
|
|
|
|
$data |
|
|
Export-Excel temp.xlsx -AutoSize -TableName Impressions -Show -ExcelChartDefinition $c |