From fe016f732deceb6a2ee03fc844f47bcbee09b13d Mon Sep 17 00:00:00 2001 From: Thomas Hofkens Date: Sat, 12 Nov 2022 00:52:15 +0100 Subject: [PATCH] Bugfix example script --- Examples/Tables/SalesData-WithTotalRow.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/Tables/SalesData-WithTotalRow.ps1 b/Examples/Tables/SalesData-WithTotalRow.ps1 index c5275d3..c7b7e0b 100644 --- a/Examples/Tables/SalesData-WithTotalRow.ps1 +++ b/Examples/Tables/SalesData-WithTotalRow.ps1 @@ -26,4 +26,4 @@ $TableTotalSettings = @{ } } -$data | Export-Excel -Path $xlfile -TableName Sales -TableStyle Medium10 -TableTotalSettings $TotalSettings -AutoSize -Show \ No newline at end of file +$data | Export-Excel -Path $xlfile -TableName Sales -TableStyle Medium10 -TableTotalSettings $TableTotalSettings -AutoSize -Show \ No newline at end of file