forked from dfinke/ImportExcel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSet-Row_Set-Column-SetFormat.tests.ps1
More file actions
387 lines (356 loc) · 24.7 KB
/
Copy pathSet-Row_Set-Column-SetFormat.tests.ps1
File metadata and controls
387 lines (356 loc) · 24.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseDeclaredVarsMoreThanAssignments','',Justification='False Positives')]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingCmdletAliases','',Justification='Testing for presence of alias')]
param()
$path = "TestDrive:\test.xlsx"
$data = ConvertFrom-Csv -InputObject @"
ID,Product,Quantity,Price
12001,Nails,37,3.99
12002,Hammer,5,12.10
12003,Saw,12,15.37
12010,Drill,20,8
12011,Crowbar,7,23.48
"@
$DriverData = convertFrom-CSv @"
Name,Wikipage,DateOfBirth
Fernando Alonso,/wiki/Fernando_Alonso,1981-07-29
Jenson Button,/wiki/Jenson_Button,1980-01-19
Kimi Räikkönen,/wiki/Kimi_R%C3%A4ikk%C3%B6nen,1979-10-17
Lewis Hamilton,/wiki/Lewis_Hamilton,1985-01-07
Nico Rosberg,/wiki/Nico_Rosberg,1985-06-27
Sebastian Vettel,/wiki/Sebastian_Vettel,1987-07-03
"@ | ForEach-Object {$_.DateOfBirth = [datetime]$_.DateofBirth; $_ }
Describe "Number format expansion and setting" {
Context "Expand-NumberFormat function" {
It "Expanded named number formats as expected " {
$r = [regex]::Escape([cultureinfo]::CurrentCulture.NumberFormat.CurrencySymbol)
Expand-NumberFormat 'Currency' | Should -Match "^[$r\(\)\[\] RED0#\?\-;,.]+$"
Expand-NumberFormat 'Number' | Should -Be "0.00"
Expand-NumberFormat 'Percentage' | Should -Be "0.00%"
Expand-NumberFormat 'Scientific' | Should -Be "0.00E+00"
Expand-NumberFormat 'Fraction' | Should -Be "# ?/?"
Expand-NumberFormat 'Short Date' | Should -Be "mm-dd-yy"
Expand-NumberFormat 'Short Time' | Should -Be "h:mm"
Expand-NumberFormat 'Long Time' | Should -Be "h:mm:ss"
Expand-NumberFormat 'Date-Time' | Should -Be "m/d/yy h:mm"
Expand-NumberFormat 'Text' | Should -Be "@"
}
}
Context "Apply-NumberFormat" {
BeforeAll {
Remove-Item -Path $path -ErrorAction SilentlyContinue
$n = [datetime]::Now.ToOADate()
$excel = 1..32 | ForEach-Object {$n} | Export-Excel -Path $path -show -WorksheetName s2 -PassThru
$ws = $excel.Workbook.Worksheets[1]
Set-ExcelRange -Worksheet $ws -Range "A1" -numberFormat 'General'
Set-ExcelRange -Worksheet $ws -Range "A2" -numberFormat 'Number'
Set-ExcelRange -Worksheet $ws -Range "A3" -numberFormat 'Percentage'
Set-ExcelRange -Worksheet $ws -Range "A4" -numberFormat 'Scientific'
Set-ExcelRange -Worksheet $ws -Range "A5" -numberFormat 'Fraction'
Set-ExcelRange -Worksheet $ws -Range "A6" -numberFormat 'Short Date'
Set-ExcelRange -Worksheet $ws -Range "A7" -numberFormat 'Short Time'
Set-ExcelRange -Worksheet $ws -Range "A8" -numberFormat 'Long Time'
Set-ExcelRange -Worksheet $ws -Range "A9" -numberFormat 'Date-Time'
Set-ExcelRange -Worksheet $ws -Range "A10" -numberFormat 'Currency'
Set-ExcelRange -Worksheet $ws -Range "A11" -numberFormat 'Text'
Set-ExcelRange -Worksheet $ws -Range "A12" -numberFormat 'h:mm AM/PM'
Set-ExcelRange -Worksheet $ws -Range "A13" -numberFormat 'h:mm:ss AM/PM'
Set-ExcelRange -Worksheet $ws -Range "A14" -numberFormat 'mm:ss'
Set-ExcelRange -Worksheet $ws -Range "A15" -numberFormat '[h]:mm:ss'
Set-ExcelRange -Worksheet $ws -Range "A16" -numberFormat 'mmss.0'
Set-ExcelRange -Worksheet $ws -Range "A17" -numberFormat 'd-mmm-yy'
Set-ExcelRange -Worksheet $ws -Range "A18" -numberFormat 'd-mmm'
Set-ExcelRange -Worksheet $ws -Range "A19" -numberFormat 'mmm-yy'
Set-ExcelRange -Worksheet $ws -Range "A20" -numberFormat '0'
Set-ExcelRange -Worksheet $ws -Range "A21" -numberFormat '0.00'
Set-ExcelRange -Address $ws.Cells[ "A22"] -NumberFormat '#,##0'
Set-ExcelRange -Address $ws.Cells[ "A23"] -NumberFormat '#,##0.00'
Set-ExcelRange -Address $ws.Cells[ "A24"] -NumberFormat '#,'
Set-ExcelRange -Address $ws.Cells[ "A25"] -NumberFormat '#.0,,'
Set-ExcelRange -Address $ws.Cells[ "A26"] -NumberFormat '0%'
Set-ExcelRange -Address $ws.Cells[ "A27"] -NumberFormat '0.00%'
Set-ExcelRange -Address $ws.Cells[ "A28"] -NumberFormat '0.00E+00'
Set-ExcelRange -Address $ws.Cells[ "A29"] -NumberFormat '# ?/?'
Set-ExcelRange -Address $ws.Cells[ "A30"] -NumberFormat '# ??/??'
Set-ExcelRange -Address $ws.Cells[ "A31"] -NumberFormat '@'
Close-ExcelPackage -ExcelPackage $excel
$excel = Open-ExcelPackage -Path $path
$ws = $excel.Workbook.Worksheets[1]
}
It "Set formats which translate to the correct format ID " {
$ws.Cells[ 1, 1].Style.Numberformat.NumFmtID | Should -Be 0 # Set as General
$ws.Cells[20, 1].Style.Numberformat.NumFmtID | Should -Be 1 # Set as 0
$ws.Cells[ 2, 1].Style.Numberformat.NumFmtID | Should -Be 2 # Set as "Number"
$ws.Cells[21, 1].Style.Numberformat.NumFmtID | Should -Be 2 # Set as 0.00
$ws.Cells[22, 1].Style.Numberformat.NumFmtID | Should -Be 3 # Set as #,##0
$ws.Cells[23, 1].Style.Numberformat.NumFmtID | Should -Be 4 # Set as #,##0.00
$ws.Cells[26, 1].Style.Numberformat.NumFmtID | Should -Be 9 # Set as 0%
$ws.Cells[27, 1].Style.Numberformat.NumFmtID | Should -Be 10 # Set as 0.00%
$ws.Cells[ 3, 1].Style.Numberformat.NumFmtID | Should -Be 10 # Set as "Percentage"
$ws.Cells[28, 1].Style.Numberformat.NumFmtID | Should -Be 11 # Set as 0.00E+00
$ws.Cells[ 4, 1].Style.Numberformat.NumFmtID | Should -Be 11 # Set as "Scientific"
$ws.Cells[ 5, 1].Style.Numberformat.NumFmtID | Should -Be 12 # Set as "Fraction"
$ws.Cells[29, 1].Style.Numberformat.NumFmtID | Should -Be 12 # Set as # ?/?
$ws.Cells[30, 1].Style.Numberformat.NumFmtID | Should -Be 13 # Set as # ??/?
$ws.Cells[ 6, 1].Style.Numberformat.NumFmtID | Should -Be 14 # Set as "Short date"
$ws.Cells[17, 1].Style.Numberformat.NumFmtID | Should -Be 15 # Set as d-mmm-yy
$ws.Cells[18, 1].Style.Numberformat.NumFmtID | Should -Be 16 # Set as d-mmm
$ws.Cells[19, 1].Style.Numberformat.NumFmtID | Should -Be 17 # Set as mmm-yy
$ws.Cells[12, 1].Style.Numberformat.NumFmtID | Should -Be 18 # Set as h:mm AM/PM
$ws.Cells[13, 1].Style.Numberformat.NumFmtID | Should -Be 19 # Set as h:mm:ss AM/PM
$ws.Cells[ 7, 1].Style.Numberformat.NumFmtID | Should -Be 20 # Set as "Short time"
$ws.Cells[ 8, 1].Style.Numberformat.NumFmtID | Should -Be 21 # Set as "Long time"
$ws.Cells[ 9, 1].Style.Numberformat.NumFmtID | Should -Be 22 # Set as "Date-time"
$ws.Cells[14, 1].Style.Numberformat.NumFmtID | Should -Be 45 # Set as mm:ss
$ws.Cells[15, 1].Style.Numberformat.NumFmtID | Should -Be 46 # Set as [h]:mm:ss
$ws.Cells[16, 1].Style.Numberformat.NumFmtID | Should -Be 47 # Set as mmss.0
$ws.Cells[11, 1].Style.Numberformat.NumFmtID | Should -Be 49 # Set as "Text"
$ws.Cells[31, 1].Style.Numberformat.NumFmtID | Should -Be 49 # Set as @
$ws.Cells[24, 1].Style.Numberformat.Format | Should -Be '#,' # Whole thousands
$ws.Cells[25, 1].Style.Numberformat.Format | Should -Be '#.0,,' # Millions
}
}
}
Describe "Set-ExcelColumn, Set-ExcelRow and Set-ExcelRange" {
BeforeAll {
Remove-Item -Path $path -ErrorAction SilentlyContinue
$excel = $data| Export-Excel -Path $path -AutoNameRange -PassThru
$ws = $excel.Workbook.Worksheets["Sheet1"]
$c = Set-ExcelColumn -PassThru -Worksheet $ws -Heading "Total" -Value "=Quantity*Price" -NumberFormat "£#,###.00" -FontColor ([System.Drawing.Color]::Blue) -Bold -HorizontalAlignment Right -VerticalAlignment Top
$r = Set-ExcelRow -PassThru -Worksheet $ws -StartColumn 3 -BorderAround Thin -Italic -Underline -FontSize 14 -Value {"=sum($columnName`2:$columnName$endrow)" } -VerticalAlignment Bottom
Set-ExcelRange -Address $excel.Workbook.Worksheets["Sheet1"].Cells["b3"] -HorizontalAlignment Right -VerticalAlignment Center -BorderAround Thick -BorderColor ([System.Drawing.Color]::Red) -StrikeThru
Set-ExcelRange -Address $excel.Workbook.Worksheets["Sheet1"].Cells["c3"] -BorderColor ([System.Drawing.Color]::Red) -BorderTop DashDot -BorderLeft DashDotDot -BorderBottom Dashed -BorderRight Dotted
Set-ExcelRange -Worksheet $ws -Range "E3" -Bold:$false -FontShift Superscript -HorizontalAlignment Left
Set-ExcelRange -Worksheet $ws -Range "E1" -ResetFont -HorizontalAlignment General -FontName "Courier New" -fontSize 9
Set-ExcelRange -Address $ws.Cells["E7"] -ResetFont -WrapText -BackgroundColor ([System.Drawing.Color]::AliceBlue) -BackgroundPattern DarkTrellis -PatternColor ([System.Drawing.Color]::Red) -NumberFormat "£#,###.00"
Set-ExcelRange -Address $ws.Column(1) -Width 0
if (-not $env:NoAutoSize) {
Set-ExcelRange -Address $ws.Column(2) -AutoFit
Set-ExcelRange -Address $ws.Cells["E:E"] -AutoFit
}
#Test alias
Set-Format -Address $ws.row(5) -Height 0
$rr = $r.row
Set-ExcelRange -Worksheet $ws -Range "B$rr" -Value "Total"
$BadHideWarnvar = $null
Set-ExcelRange -Worksheet $ws -Range "D$rr" -Formula "=E$rr/C$rr" -Hidden -WarningVariable "BadHideWarnvar" -WarningAction SilentlyContinue
$rr ++
Set-ExcelRange -Worksheet $ws -Range "B$rr" -Value ([datetime]::Now)
Close-ExcelPackage $excel -Calculate
$excel = Open-ExcelPackage $path
$ws = $excel.Workbook.Worksheets["Sheet1"]
}
Context "Set-ExcelRow and Set-ExcelColumn" {
it "Set a row and a column to have zero width/height " {
$r | Should -Not -BeNullorEmpty
# $c | Should -Not -BeNullorEmpty ## can't see why but this test breaks in appveyor
$ws.Column(1).width | Should -Be 0
$ws.Row(5).height | Should -Be 0
}
it "Set a column formula, with numberformat, color, bold face and alignment " {
$ws.Cells["e2"].Formula | Should -Be "Quantity*Price"
$ws.Cells["e2"].Value | Should -Be 147.63
$ws.Cells["e2"].Style.Font.Color.rgb | Should -Be "FF0000FF"
$ws.Cells["e2"].Style.Font.Bold | Should -Be $true
$ws.Cells["e2"].Style.Font.VerticalAlign | Should -Be "None"
$ws.Cells["e2"].Style.Numberformat.format | Should -Be "£#,###.00"
$ws.Cells["e2"].Style.HorizontalAlignment | Should -Be "Right"
}
}
Context "Other formatting" {
it "Trapped an attempt to hide a range instead of a Row/Column " {
$BadHideWarnvar | Should -Not -BeNullOrEmpty
}
it "Set and calculated a row formula with border font size and underline " {
$ws.Cells["b7"].Style.Border.Top.Style | Should -Be "None"
$ws.Cells["F7"].Style.Border.Top.Style | Should -Be "None"
$ws.Cells["C7"].Style.Border.Top.Style | Should -Be "Thin"
$ws.Cells["C7"].Style.Border.Bottom.Style | Should -Be "Thin"
$ws.Cells["C7"].Style.Border.Right.Style | Should -Be "None"
$ws.Cells["C7"].Style.Border.Left.Style | Should -Be "Thin"
$ws.Cells["E7"].Style.Border.Left.Style | Should -Be "None"
$ws.Cells["E7"].Style.Border.Right.Style | Should -Be "Thin"
$ws.Cells["C7"].Style.Font.size | Should -Be 14
$ws.Cells["C7"].Formula | Should -Be "sum(C2:C6)"
$ws.Cells["C7"].value | Should -Be 81
$ws.Cells["C7"].Style.Font.UnderLine | Should -Be $true
$ws.Cells["C6"].Style.Font.UnderLine | Should -Be $false
}
it "Set custom font, size, text-wrapping, alignment, superscript, border and Fill " {
$ws.Cells["b3"].Style.Border.Left.Color.Rgb | Should -Be "FFFF0000"
$ws.Cells["b3"].Style.Border.Left.Style | Should -Be "Thick"
$ws.Cells["b3"].Style.Border.Right.Style | Should -Be "Thick"
$ws.Cells["b3"].Style.Border.Top.Style | Should -Be "Thick"
$ws.Cells["b3"].Style.Border.Bottom.Style | Should -Be "Thick"
$ws.Cells["b3"].Style.Font.Strike | Should -Be $true
$ws.Cells["e1"].Style.Font.Color.Rgb | Should -Be "ff000000"
$ws.Cells["e1"].Style.Font.Bold | Should -Be $false
$ws.Cells["e1"].Style.Font.Name | Should -Be "Courier New"
$ws.Cells["e1"].Style.Font.Size | Should -Be 9
$ws.Cells["e3"].Style.Font.VerticalAlign | Should -Be "Superscript"
$ws.Cells["e3"].Style.HorizontalAlignment | Should -Be "Left"
$ws.Cells["C6"].Style.WrapText | Should -Be $false
$ws.Cells["e7"].Style.WrapText | Should -Be $true
$ws.Cells["e7"].Style.Fill.BackgroundColor.Rgb | Should -Be "FFF0F8FF"
$ws.Cells["e7"].Style.Fill.PatternColor.Rgb | Should -Be "FFFF0000"
$ws.Cells["e7"].Style.Fill.PatternType | Should -Be "DarkTrellis"
}
}
Context "Set-ExcelRange value setting " {
it "Inserted a formula " {
$ws.Cells["D7"].Formula | Should -Be "E7/C7"
}
it "Inserted a value " {
$ws.Cells["B7"].Value | Should -Be "Total"
}
it "Inserted a date with localized date-time format " {
$ws.Cells["B8"].Style.Numberformat.NumFmtID | Should -Be 22
}
}
Context "Set-ExcelColumn Value Setting" {
BeforeAll {
Remove-Item -Path $path -ErrorAction SilentlyContinue
$excel = $DriverData | Export-Excel -PassThru -Path $path -AutoSize -AutoNameRange
$ws = $excel.Workbook.Worksheets[1]
Set-ExcelColumn -Worksheet $ws -Heading "Link" -AutoSize -Value {"https://en.wikipedia.org" + $worksheet.Cells["B$Row"].value }
$c = Set-ExcelColumn -PassThru -Worksheet $ws -Heading "NextBirthday" -Value {
$bmonth = $worksheet.Cells["C$Row"].value.month ; $bDay = $worksheet.Cells["C$Row"].value.day
$cMonth = [datetime]::Now.Month ; $cday = [datetime]::Now.day ; $cyear = [datetime]::Now.Year
if (($cmonth -gt $bmonth) -or (($cMonth -eq $bmonth) -and ($cday -ge $bDay))) {
[datetime]::new($cyear + 1, $bmonth, $bDay)
}
else {[datetime]::new($cyear, $bmonth, $bday) }
}
Set-ExcelColumn -Worksheet $ws -Heading "Age" -Value "=INT((NOW()-DateOfBirth)/365)"
# Test Piping column Numbers into Set excelColumn
3, $c.ColumnMin | Set-ExcelColumn -Worksheet $ws -NumberFormat 'Short Date' -AutoSize
4..6 | Set-ExcelColumn -Worksheet $ws -AutoNameRange
Close-ExcelPackage -ExcelPackage $excel -Calculate
$excel = Open-ExcelPackage $path
$ws = $excel.Workbook.Worksheets["Sheet1"]
}
It "Inserted Hyperlinks " {
$ws.Cells["D2"].Hyperlink | Should -Not -BeNullorEmpty
$ws.Cells["D2"].Style.Font.UnderLine | Should -Be $true
}
It "Inserted and formatted Dates " {
$ws.Cells["C2"].Value.GetType().name | Should -Be "DateTime"
$ws.Cells["C2"].Style.Numberformat.NumFmtID | Should -Be 14
$ws.Cells["E2"].Value.GetType().name | Should -Be "DateTime"
$ws.Cells["E2"].Style.Numberformat.NumFmtID | Should -Be 14
}
It "Inserted Formulas " {
$ws.Cells["F2"].Formula | Should -Not -BeNullorEmpty
}
It "Created Named ranges " {
$ws.Names.Count | Should -Be 6
$ws.Names["Age"] | Should -Not -BeNullorEmpty
$ws.Names["Age"].Start.Column | Should -Be 6
$ws.Names["Age"].Start.Row | Should -Be 2
$ws.Names["Age"].End.Row | Should -Be 7
$ws.names[0].name | Should -Be "Name"
$ws.Names[0].Start.Column | Should -Be 1
$ws.Names[0].Start.Row | Should -Be 2
}
}
}
Describe "Conditional Formatting" {
BeforeAll {
#Remove-Item $path
$data = Get-Process | Where-Object company | Select-Object company, name, pm, handles, *mem*
$cfmt = New-ConditionalFormattingIconSet -Range "c:c" -ConditionalFormat ThreeIconSet -IconType Arrows
$data | Export-Excel -path $Path -AutoSize -ConditionalFormat $cfmt
$excel = Open-ExcelPackage -Path $path
$ws = $excel.Workbook.Worksheets[1]
}
Context "Using a pre-prepared 3 Arrows rule" {
it "Set the right type, IconSet and range " {
$ws.ConditionalFormatting[0].IconSet | Should -Be "Arrows"
$ws.ConditionalFormatting[0].Address.Address | Should -Be "c:c"
$ws.ConditionalFormatting[0].Type.ToString() | Should -Be "ThreeIconSet"
}
}
}
$path = "TestDrive:\test.xlsx"
$data2 = ConvertFrom-Csv -InputObject @"
ID,Product,Quantity,Price,Total
12001,Nails,37,3.99,147.63
12002,Hammer,5,12.10,60.5
12003,Saw,12,15.37,184.44
12010,Drill,20,8,160
12011,Crowbar,7,23.48,164.36
12001,Nails,53,3.99,211.47
12002,Hammer,6,12.10,72.60
12003,Saw,10,15.37,153.70
12010,Drill,10,8,80
12012,Pliers,2,14.99,29.98
12001,Nails,20,3.99,79.80
12002,Hammer,2,12.10,24.20
12010,Drill,11,8,88
12012,Pliers,3,14.99,44.97
"@
Describe "AutoNameRange data with a single property name" {
BeforeEach {
$xlfile = "TestDrive:\testNamedRange.xlsx"
Remove-Item $xlfile -ErrorAction SilentlyContinue
}
it "Should have a single item as a named range " {
$excel = ConvertFrom-Csv @"
Sold
1
2
3
4
"@ | Export-Excel $xlfile -PassThru -AutoNameRange
$ws = $excel.Workbook.Worksheets["Sheet1"]
$ws.Names.Count | Should -Be 1
$ws.Names[0].Name | Should -Be 'Sold'
}
it "Should have a more than a single item as a named range " {
$excel = ConvertFrom-Csv @"
Sold,ID
1,a
2,b
3,c
4,d
"@ | Export-Excel $xlfile -PassThru -AutoNameRange
$ws = $excel.Workbook.Worksheets["Sheet1"]
$ws.Names.Count | Should -Be 2
$ws.Names[0].Name | Should -Be 'Sold'
$ws.Names[1].Name | Should -Be 'ID'
}
}
Describe "Table Formatting" {
BeforeAll {
#Remove-Item $path
$excel = $data2 | Export-excel -path $path -WorksheetName Hardware -AutoNameRange -AutoSize -BoldTopRow -FreezeTopRow -PassThru
$ws = $excel.Workbook.Worksheets[1]
#test showfilter & TotalSettings
$Table = Add-ExcelTable -PassThru -Range $ws.Cells[$($ws.Dimension.address)] -TableStyle Light1 -TableName HardwareTable -TotalSettings @{"Total" = "Sum"} -ShowFirstColumn -ShowFilter:$false
#test expnading named number formats
Set-ExcelColumn -Worksheet $ws -Column 4 -NumberFormat 'Currency'
Set-ExcelColumn -Worksheet $ws -Column 5 -NumberFormat 'Currency'
$PtDef = New-PivotTableDefinition -PivotTableName Totals -PivotRows Product -PivotData @{"Total" = "Sum"} -PivotNumberFormat Currency -PivotTotals None -PivotTableStyle Dark2
Export-excel -ExcelPackage $excel -WorksheetName Hardware -PivotTableDefinition $PtDef
$excel = Open-ExcelPackage -Path $path
$ws1 = $excel.Workbook.Worksheets["Hardware"]
$ws2 = $excel.Workbook.Worksheets["Totals"]
}
Context "Setting and not clearing when Export-Excel touches the file again." {
it "Set the Table Options " {
$ws1.Tables[0].Address.Address | Should -Be "A1:E16"
$ws1.Tables[0].Name | Should -Be "HardwareTable"
$ws1.Tables[0].ShowFirstColumn | Should -Be $true
$ws1.Tables[0].ShowLastColumn | Should -Not -Be $true
$ws1.Tables[0].ShowTotal | Should -Be $true
$ws1.Tables[0].Columns["Total"].TotalsRowFunction | Should -Be "Sum"
$ws1.Tables[0].StyleName | Should -Be "TableStyleLight1"
$ws1.Cells["D4"].Style.Numberformat.Format | Should -Match ([regex]::Escape([cultureinfo]::CurrentCulture.NumberFormat.CurrencySymbol))
$ws1.Cells["E5"].Style.Numberformat.Format | Should -Match ([regex]::Escape([cultureinfo]::CurrentCulture.NumberFormat.CurrencySymbol))
}
it "Set the Pivot Options " {
$ws2.PivotTables[0].DataFields[0].Format | Should -Match ([regex]::Escape([cultureinfo]::CurrentCulture.NumberFormat.CurrencySymbol))
$ws2.PivotTables[0].ColumGrandTotals | Should -Be $false
$ws2.PivotTables[0].StyleName | Should -Be "PivotStyleDark2"
}
}
}