How to Update This Dashboard Monthly
Open the HTML file in any text editor — Notepad (Windows), TextEdit (Mac), or VS Code. Find the DATA section and update the arrays. Everything recalculates automatically.
📈 NRR Data
2
Update
starting — MRR at start of each month
3
Update
ending_r — your actual ending MRR
4
NRR % calculates automatically
💬 NPS Data
2
Update
sent — surveys sent each month
3
Update
promoters — scored 9 or 10
4
Update
detractors — scored 0 to 6
🏷️ Logo Data
2
Update
start — clients at start of month
3
Update
newCl — new clients onboarded
4
Update
lost — clients who terminated
// ══ DATA — UPDATE THESE NUMBERS EACH MONTH ════════════════
// Arrays = [Jan, Feb, Mar, Apr, May, Jun]
const nrrData = {
starting: [59657.41, 42435.77, 56448.04, 53135.84, 53376.64, 28168.99],
ending_r: [42435.77, 56448.04, 53135.84, 53376.64, 28168.99, 53540.04],
};
const npsData = {
sent: [40, 38, 42, 39, 41, 44],
promoters: [22, 20, 26, 21, 25, 28],
detractors: [ 5, 4, 4, 6, 4, 4],
};
const logoData = {
start: [30, 32, 34, 37, 39, 33],
newCl: [ 3, 2, 4, 3, 2, 2],
lost: [ 1, 0, 1, 1, 0, 1],
};