From 92c6797f057b8db40f0aa3064ba93784d627d637 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Wed, 18 Feb 2026 11:34:16 +1100 Subject: [PATCH] update pivot table title cell --- internal/report/snapshots.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/report/snapshots.go b/internal/report/snapshots.go index 78c6db4..5e71923 100644 --- a/internal/report/snapshots.go +++ b/internal/report/snapshots.go @@ -963,7 +963,7 @@ func addSummaryPivotSheet(logger *slog.Logger, xlsx *excelize.File, dataSheet st }, { Title: "Sum of prorated VM count", - TitleCell: "A23", + TitleCell: "A41", PivotName: "PivotProratedVmCount", PivotRange: fmt.Sprintf("%s!A43:H62", summarySheet), RowFields: []string{"Datacenter"}, @@ -973,7 +973,7 @@ func addSummaryPivotSheet(logger *slog.Logger, xlsx *excelize.File, dataSheet st }, { Title: "Count of VM Name", - TitleCell: "J23", + TitleCell: "J41", PivotName: "PivotVmNameCount", PivotRange: fmt.Sprintf("%s!J43:P62", summarySheet), RowFields: []string{"Datacenter"},