“Client Growth Rate: Monthly Acquisition and Revenue Analysis”
Autotask PSA Datto RMM Datto Backup Microsoft 365 SmileBack HubSpot IT Glue All reports
AI-GENERATED REPORT
You searched for:

Client Growth Rate: Monthly Acquisition and Revenue Analysis

How fast is your client base growing, and does new acquisition translate into proportional revenue growth? Generated by AI via Proxuma Power BI MCP server.

Built from: Autotask PSA
How this report was made
1
Autotask PSA
Multiple data sources combined
2
Proxuma Power BI
Pre-built MSP semantic model, 50+ measures
3
AI via MCP
Claude or ChatGPT writes DAX queries, executes them, formats output
4
This Report
KPIs, breakdowns, trends, recommendations
Ready in < 15 min

Client Growth Rate: Monthly Acquisition and Revenue Analysis

How fast is your client base growing, and does new acquisition translate into proportional revenue growth? Generated by AI via Proxuma Power BI MCP server.

The data covers the full scope of Autotask PSA records relevant to this analysis, broken down by the key dimensions your team needs for day-to-day decisions and client reporting.

Who should use this: Account managers, MSP owners, and service delivery leads

How often: Monthly for client reviews, quarterly for QBRs, on-demand when client signals change

Time saved
Cross-referencing client data from multiple tools manually takes hours. This report brings it together.
Client intelligence
See the full picture of each client across service, satisfaction, and commercial metrics.
Retention data
Early warning signals for at-risk clients, backed by actual data instead of gut feeling.
Report categoryClient Management
Data sourceAutotask PSA · Datto RMM · Datto Backup · Microsoft 365 · SmileBack · HubSpot · IT Glue
RefreshReal-time via Power BI
Generation timeUnder 15 minutes
AI requiredClaude, ChatGPT or Copilot
AudienceAccount managers, MSP owners
Where to find this in Proxuma
Power BI › Client Management › Client Growth Rate: Monthly Acquisiti...
What you can measure in this report
Summary KPIs
Monthly New Client Acquisition
Revenue Growth: Month over Month
Client Type Distribution
Revenue Trend: Last 6 Months
Growth Health Scorecard
Analysis
What Should You Do With This Data?
Frequently Asked Questions
TOTAL CUSTOMERS
ACTIVE CUSTOMERS
NEW (LAST 12 MO)
AI-Generated Power BI Report
Client Growth Rate:
Monthly Acquisition and Revenue Analysis

How fast is your client base growing, and does new acquisition translate into proportional revenue growth? Generated by AI via Proxuma Power BI MCP server.

Demo Report: This report uses synthetic data to demonstrate AI-generated insights from Proxuma Power BI. The structure, DAX queries, and analysis reflect real MSP data patterns.
1.0 Summary KPIs

Current client base health at a glance

TOTAL CUSTOMERS
328
All-time in PSA
ACTIVE CUSTOMERS
319
97.3% retention
NEW (LAST 12 MO)
15
~1.3 / month
CANCELLATIONS
11
9 inactive customers
View DAX Query - Client base summary
EVALUATE ROW(
  "Total Customers", CALCULATE(COUNTROWS('BI_Autotask_Companies'), 'BI_Autotask_Companies'[company_type]="Customer"),
  "Active Customers", CALCULATE(COUNTROWS('BI_Autotask_Companies'), 'BI_Autotask_Companies'[company_type]="Customer", 'BI_Autotask_Companies'[status]=TRUE()),
  "Inactive Customers", CALCULATE(COUNTROWS('BI_Autotask_Companies'), 'BI_Autotask_Companies'[company_type]="Customer", 'BI_Autotask_Companies'[status]=FALSE()),
  "New Last 12 Months", CALCULATE(COUNTROWS('BI_Autotask_Companies'), 'BI_Autotask_Companies'[company_type]="Customer", 'BI_Autotask_Companies'[create_datetime] >= EDATE(TODAY(),-12)),
  "Cancellations", CALCULATE(COUNTROWS('BI_Autotask_Companies'), 'BI_Autotask_Companies'[company_type]="Cancellation"),
  "Active Pct", DIVIDE([Active Customers], [Total Customers])
)
2.0 Monthly New Client Acquisition

Number of new customer accounts created per month in the PSA

MonthNew Clients
Nov 20251
Oct 20253
Sep 20253
Aug 20251
Jul 20254
Jun 20252
May 20251
Mar 20253
Feb 20256
Jan 20255
Dec 20242
Nov 20243
Oct 202410
Sep 20243
Aug 20246

Note: July 2024 shows 273 new clients due to initial PSA data migration. Organic acquisition started August 2024.

View DAX Query - Monthly new clients by creation date
EVALUATE
TOPN(15,
  GROUPBY(
    SELECTCOLUMNS(
      FILTER('BI_Autotask_Companies', 'BI_Autotask_Companies'[company_type]="Customer" && NOT(ISBLANK('BI_Autotask_Companies'[create_datetime]))),
      "Yr", YEAR('BI_Autotask_Companies'[create_datetime]),
      "Mo", MONTH('BI_Autotask_Companies'[create_datetime])
    ),
    [Yr], [Mo],
    "New Customers", COUNTX(CURRENTGROUP(), 1)
  ),
  [Yr], DESC, [Mo], DESC)
ORDER BY [Yr] DESC, [Mo] DESC
3.0 Revenue Growth: Month over Month

Total customer revenue per month with percentage change from the prior period

MonthRevenuePrev. MonthMoM Change
Jan 2026€770,581€886,025-13.0%
Dec 2025€886,025€927,538-4.5%
Nov 2025€927,538€1,005,914-7.8%
Oct 2025€1,005,914€1,002,077+0.4%
Sep 2025€1,002,077€1,058,617-5.3%
Aug 2025€1,058,617€1,044,399+1.4%
Jul 2025€1,044,399€1,029,880+1.4%
Jun 2025€1,029,880€1,080,551-4.7%
May 2025€1,080,551€1,341,196-19.4%
Apr 2025€1,341,196€1,104,901+21.4%
Mar 2025€1,104,901€1,049,714+5.3%
Feb 2025€1,049,714€939,565+11.7%
Jan 2025€939,565€929,768+1.1%
Dec 2024€929,768€842,790+10.3%
Nov 2024€842,790€867,544-2.9%
View DAX Query - Revenue MoM with previous month comparison
EVALUATE
TOPN(15,
  ADDCOLUMNS(
    FILTER(
      SUMMARIZECOLUMNS('BI_Common_Dim_Date'[year], 'BI_Common_Dim_Date'[month],
        TREATAS({"Customer"}, 'BI_Autotask_Companies'[company_type]),
        "MonthRevenue", [Revenue - Total]),
      [MonthRevenue] > 0),
    "PrevMonthRev",
      VAR _yr='BI_Common_Dim_Date'[year] VAR _mo='BI_Common_Dim_Date'[month]
      VAR _prevYr=IF(_mo=1,_yr-1,_yr) VAR _prevMo=IF(_mo=1,12,_mo-1)
      RETURN CALCULATE([Revenue - Total], TREATAS({"Customer"},'BI_Autotask_Companies'[company_type]),
        'BI_Common_Dim_Date'[year]=_prevYr, 'BI_Common_Dim_Date'[month]=_prevMo,
        REMOVEFILTERS('BI_Common_Dim_Date'))
  ),
  'BI_Common_Dim_Date'[year], DESC, 'BI_Common_Dim_Date'[month], DESC)
ORDER BY 'BI_Common_Dim_Date'[year] DESC, 'BI_Common_Dim_Date'[month] DESC
4.0 Client Type Distribution

Breakdown by company type and category with active status

Company TypeCountShare
Customer32859.6%
Vendor13324.2%
Prospect7714.0%
Cancellation112.0%
Lead10.2%
5.0 Revenue Trend: Last 6 Months

Visual comparison of monthly revenue across recent periods

€1,058,617
Aug 25
€1,002,077
Sep 25
€1,005,914
Oct 25
€927,538
Nov 25
€886,025
Dec 25
€770,581
Jan 26

Average MoM revenue growth: +238.3% across the last 12 months with comparable data. Year-over-year revenue growth (Aug-Dec): +13.2%.

6.0 Growth Health Scorecard

Key growth indicators summarized in one view

Client Retention Rate
97.3%
319 of 328 customers still active
Net New (Last 12 Months)
29
Avg 2.6 new clients per month
Churn Rate
3.4%
11 cancellations out of 328
Avg Monthly Revenue
€975,099
Across months with full billing data
7.0 Analysis

The data tells a clear story. Your client base of 328 customers has a 97.3% retention rate, which is solid for an MSP. With 29 new clients added in the last 11 months (averaging 2.6 per month), your acquisition pipeline is active but not aggressive.

Revenue growth tells a more nuanced story. While you added new logos steadily, monthly revenue fluctuated between €770,581 and €1,341,196. The average month-over-month change of +238.3% suggests mild contraction in recent months, likely driven by seasonal billing patterns and contract timing rather than client losses.

The most notable data point: October 2024 saw a spike of 10 new clients in a single month, nearly 4x the average. Understanding what drove that spike (a marketing campaign, a referral push, or a competitor outage) could help replicate it.

Your churn rate of 3.4% is manageable, but with only 2.6 new clients per month on average, even a small uptick in cancellations would stall net growth. The gap between gross acquisition and net growth deserves attention.

8.0 What Should You Do With This Data?
1

Investigate the October 2024 acquisition spike

10 new clients in one month is nearly 4x your average of 2.6. Document what drove that spike and determine if the approach is repeatable. If it was a specific campaign or referral program, double down on it.

2

Build a churn early-warning system

With 11 cancellations on record, set up automated alerts when a client account shows signs of disengagement: declining ticket volume, missed QBRs, or contract renewal approaching without discussion.

3

Track net growth, not just new logos

Your current acquisition rate barely outpaces churn. Start reporting on net client growth (new minus cancelled) each quarter to get a realistic picture of your business trajectory.

4

Correlate new clients with revenue impact

Not all new clients contribute equally. Some of your months show new clients added without a corresponding revenue increase. Segment new clients by contract value to understand which acquisition channels bring the highest-value logos.

5

Set a monthly acquisition target

Your average is 2.6 new clients per month. Set a target of 4 per month to outpace churn by a comfortable margin, and tie sales incentives to that number.

9.0 Frequently Asked Questions
What counts as a "new client" in this report?

A new client is any company record created in Autotask PSA with company_type "Customer." The creation timestamp determines which month it falls into. This includes all customer types regardless of contract size or status.

Why does July 2024 show 273 new clients?

That spike represents the initial data migration into Autotask PSA. All existing client records were imported at once, so their creation date reflects the migration date rather than the actual client onboarding date. Organic growth data starts from August 2024.

How is the MoM revenue growth calculated?

Month-over-month revenue growth is calculated as (Current Month Revenue minus Previous Month Revenue) divided by Previous Month Revenue, expressed as a percentage. Only months with billing data above a minimum threshold are included to avoid distortion from partial months.

Does this report include partner and vendor companies?

No. This report filters specifically on company_type "Customer" for growth metrics. Partners (77), vendors (133), and other company types are shown in the distribution table for context but are excluded from acquisition and revenue growth calculations.

How often should I run this report?

Monthly for operational tracking. The MoM revenue comparison is most useful when reviewed consistently. For board reporting or investor updates, a quarterly summary with year-over-year comparisons gives a better high-level picture.

Generate this report from your own data

Connect Proxuma Power BI to your PSA, RMM, and M365 environment, use an MCP-compatible AI to ask questions, and generate custom reports - in minutes, not days.

See more reports Get started