mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
25 lines
662 B
PowerShell
25 lines
662 B
PowerShell
try {Import-Module $PSScriptRoot\..\..\ImportExcel.psd1} catch {throw ; return}
|
|
|
|
Remove-Item -Path .\test.xlsx -ErrorAction Ignore
|
|
|
|
$excel = @"
|
|
Month,New York City,Austin Texas,Portland Oregon
|
|
Jan,39,61,46
|
|
Feb,42,65,51
|
|
Mar,50,73,56
|
|
Apr,62,80,61
|
|
May,72,86,67
|
|
Jun,80,92,73
|
|
Jul,85,95,80
|
|
Aug,84,96,80
|
|
Sep,76,90,75
|
|
Oct,65,82,63
|
|
Nov,54,71,52
|
|
Dec,44,63,46
|
|
"@ | ConvertFrom-csv |
|
|
Export-Excel -Path .\test.xlsx -WorkSheetname Sheet1 -AutoNameRange -AutoSize -Title "Monthly Temperatures" -PassThru
|
|
|
|
$sheet = $excel.Workbook.Worksheets["Sheet1"]
|
|
Add-ConditionalFormatting -WorkSheet $sheet -Range "B1:D14" -DataBarColor CornflowerBlue
|
|
|
|
Close-ExcelPackage $excel -Show |