“Month-over-Month Change in Open Tickets per Company”
Autotask PSA Datto RMM Datto Backup Microsoft 365 SmileBack HubSpot IT Glue All reports
AI-GENERATED REPORT
You searched for:

Month-over-Month Change in Open Tickets per Company

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

Month-over-Month Change in Open Tickets per Company

This report provides a detailed breakdown of month-over-month change in open tickets per company for managed service providers.

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: Service desk managers, dispatch leads, and operations teams

How often: Daily for queue management, weekly for trend analysis, monthly for capacity planning

Time saved
Manual ticket analysis requires exporting data and building pivot tables. This report does it automatically.
Queue health
Stuck tickets, aging backlogs, and escalation patterns become visible at a glance.
Process improvement
Data-driven decisions about routing, staffing, and escalation rules.
Report categoryTicketing & Helpdesk
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
AudienceService desk managers, dispatch leads
Where to find this in Proxuma
Power BI › Ticketing › Month-over-Month Change in Open Ticke...
What you can measure in this report
Portfolio Snapshot
Top 15 Companies by Open Tickets
Ticket Concentration by Client
Analysis
What to Do with This Data
Frequently Asked Questions
Total Open Tickets
Companies with Tickets
Avg Open per Company
Largest Single Client
AI-Generated Report — Ticket Analytics
Data source: Autotask PSA
Report date: March 2026
Report ID: PRX-TKT-MOM-060
Sources: Autotask PSA
Month-over-Month Change in Open Tickets per Company
Tracking client ticket accumulation trends to identify growing backlogs, early churn signals, and capacity pressure points before they escalate.
Demo Report: This report uses synthetic data from the Proxuma demo dataset. Connect your own Autotask PSA to see real numbers for your portfolio.
1.0 Portfolio Snapshot

Current open ticket counts across the entire client portfolio

Total Open Tickets
844
Across all active clients
Companies with Tickets
264
Active in Autotask
Avg Open per Company
3.2
Portfolio average
Largest Single Client
113
Rivers, Rogers & Mitchell
View DAX Query — Portfolio Open Ticket KPIs
EVALUATE
ROW(
  "Total Open Tickets", [Open Tickets (Current)],
  "Companies with Tickets",
      CALCULATE(
          DISTINCTCOUNT('BI_Autotask_Tickets'[company_name]),
          ISBLANK('BI_Autotask_Tickets'[complete_date])
      ),
  "Avg Open per Company",
      DIVIDE(
          [Open Tickets (Current)],
          CALCULATE(DISTINCTCOUNT('BI_Autotask_Tickets'[company_name])),
          0
      )
)
2.0 Top 15 Companies by Open Tickets

Current open tickets and month-over-month comparison. The top 15 clients account for the bulk of your unresolved backlog.

# Company Open Now Open 1 Month Ago Change Trend % of Total
1 Rivers, Rogers and Mitchell 113 113 0 Stable 13.4%
2 Craig-Huynh 65 65 0 Stable 7.7%
3 Little Group 40 40 0 Stable 4.7%
4 Ramos Group 36 36 0 Stable 4.3%
5 Martin Group 33 33 0 Stable 3.9%
6 Price-Gomez 25 25 0 Stable 3.0%
7 Wall PLC 20 20 0 Stable 2.4%
8 Thompson, Contreras and Rios 20 20 0 Stable 2.4%
9 Leach, Cunningham and Whitehead 19 19 0 Stable 2.3%
10 Martin-Gonzalez 18 18 0 Stable 2.1%
11 Burke, Armstrong and Morgan 18 18 0 Stable 2.1%
12 Anderson, Brown and Mcintosh 18 18 0 Stable 2.1%
13 Hanson-Cunningham 18 18 0 Stable 2.1%
14 Lopez-Reyes 18 18 0 Stable 2.1%
15 Welch Inc 17 17 0 Stable 2.0%
View DAX Query — Top Companies by Open Tickets with MoM Change
EVALUATE
TOPN(15,
  ADDCOLUMNS(
    SUMMARIZE(
      'BI_Autotask_Tickets',
      'BI_Autotask_Tickets'[company_name]
    ),
    "Open Now", [Open Tickets (Current)],
    "Open 1mo Ago",
      CALCULATE(
        COUNTROWS('BI_Autotask_Tickets'),
        FILTER(
          ALL('BI_Autotask_Tickets'),
          'BI_Autotask_Tickets'[company_name]
            = EARLIER('BI_Autotask_Tickets'[company_name])
          && 'BI_Autotask_Tickets'[create_date]
            <= DATE(YEAR(TODAY()), MONTH(TODAY())-1, DAY(TODAY()))
          && (
              ISBLANK('BI_Autotask_Tickets'[complete_date])
              || 'BI_Autotask_Tickets'[complete_date]
              > DATE(YEAR(TODAY()), MONTH(TODAY())-1, DAY(TODAY()))
             )
        )
      ),
    "MoM Change", [Open Tickets Change (MoM)],
    "MoM Growth %", [Open Tickets Growth % (MoM)]
  ),
  [Open Now], DESC
)
3.0 Ticket Concentration by Client

How evenly is your open ticket backlog distributed? Heavy concentration in a few clients signals either large complex environments or unresolved accumulation.

Top 1 Company
13.4%
113 of 844 open tickets
Top 5 Companies
34.1%
288 of 844 open tickets
Remaining 259 Companies
65.9%
556 of 844 open tickets

Open Ticket Volume — Top 10 Clients

Rivers, Rogers and Mitchell
113
13.4%
Craig-Huynh
65
7.7%
Little Group
40
4.7%
Ramos Group
36
4.3%
Martin Group
33
3.9%
Price-Gomez
25
3.0%
Wall PLC
20
2.4%
Thompson, Contreras & Rios
20
2.4%
Leach, Cunningham & Whitehead
19
2.3%
Welch Inc
17
2.0%
View DAX Query — Ticket Concentration Analysis
EVALUATE ROW("TotalTickets", COUNTROWS('BI_Autotask_Tickets'), "OpenTickets", CALCULATE(COUNTROWS('BI_Autotask_Tickets'), 'BI_Autotask_Tickets'[status_name] <> "Complete"), "OverdueResolution", CALCULATE(COUNTROWS('BI_Autotask_Tickets'), 'BI_Autotask_Tickets'[resolved_due_age_days] > 0))
4.0 Analysis

The portfolio shows 844 open tickets distributed across 264 companies, with an average of 3.2 per client. That average, however, masks a significant imbalance at the top of the list.

Rivers, Rogers and Mitchell alone holds 113 open tickets, accounting for 13.4% of all unresolved work in the portfolio. The next four largest clients (Craig-Huynh, Little Group, Ramos Group, Martin Group) combine for another 174 tickets. In total, five clients are responsible for 34% of all open tickets, while the other 259 clients share the remaining two thirds.

In the demo dataset, month-over-month changes show no movement, which reflects static demo data. In a live environment connected to your Autotask, this view updates continuously as tickets are created and resolved. Rising counts at a specific client over two consecutive months should trigger an account review, not just a dispatch queue check.

5.0 What to Do with This Data

Three actions based on the findings above

1

Review Rivers, Rogers and Mitchell this week

With 113 open tickets and 13.4% of your entire portfolio backlog, this client needs a dedicated account review. The question is whether these tickets reflect a large environment with normal ticket flow, or a growing backlog caused by resolution delays. Pull the average age of the open tickets for this client first, then decide whether this is a staffing issue, a prioritization issue, or a client relationship one.

2

Set MoM thresholds for the top 10 clients

A 10% or more increase in open tickets at any of your top clients over a single month is a meaningful signal. Configure a Power BI alert or a scheduled export that flags these changes automatically. Catching a rising count at Craig-Huynh or Little Group before it doubles is far easier than managing the fallout after three consecutive bad months.

3

Use this data in your next QBR

Showing a client their own ticket trend over 12 months, with month-over-month changes, reframes the conversation from complaints to data. A client who sees that their open count has dropped from 25 to 12 over six months is much easier to retain than one who only hears about uptime percentages. Build this slide into every QBR deck for your top 15 accounts.

6.0 Frequently Asked Questions
What does "open ticket" mean in this context?

An open ticket is any ticket in Autotask that has a create date on or before today and no complete date — or a complete date in the future. This matches the industry-standard definition of an unresolved ticket regardless of its internal status label.

How is month-over-month change calculated?

The MoM change compares the current open ticket count to the count from exactly one month ago on the same calendar day. Proxuma uses the Open Tickets (Snapshot) measure, which calculates historical open counts using ticket create and complete dates, not just current status labels.

Why do some clients show no MoM change in the demo?

The demo uses a synthetic, static dataset. In a live environment connected to your Autotask PSA, the MoM column reflects real ticket creation and resolution activity month over month. Changes will appear as your data refreshes.

Can I filter this report by ticket type or queue?

Yes. In the live Power BI report, you can apply slicers for ticket type, queue, priority, and assigned resource. The MoM calculations update dynamically when filters are applied. The AI-generated version shown here uses unfiltered portfolio data.

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