When issues bounce between statuses, the calendar moves but outcomes don’t. Let’s make those loops visible—calmly, and with the tools you already use.
Status Churn refers to the avoidable back-and-forth in your workflow—the moments when an issue revisits the same step multiple times. Also known as ticket ping-pong / bouncing, rework loops, or backflow, it’s the quiet drag that keeps teams busy without moving work to “Done.”
This article introduces a simple, counts-only Status Churn Score (SCS) you can calculate with the Time in Status app for Jira—and, if you prefer, pipe to Google Sheets via the app’s JSON Data Feed Link for light analysis and trending. No heavy math — just a clear routine you can explain in one sentence and track week over week.
Churn is:
Churn is not (usually):
Keep the metric focused on unnecessary loops. If a loop is part of your definition of quality, leave it out.
You can do this entirely inside the Time in Status app for Jira, or fetch the same Status Count data into Google Sheets using the app’s JSON Data Feed Link. Pick the path that matches how your teams work.
1) Scope & window
Choose a project/board/saved filter and a date range (e.g., last 90 days). Use the same scope and window every time so comparisons stay fair.
2) Bring the JSON into Sheets
In the Time in Status app for Jira, open Status Count report for your scope and time window, save Preset, and copy the JSON Data Feed Link. Next, use the instructions to set up the correct export to Google Sheets.
3) Hide statuses from the table that do not need to be taken into account in the calculations.
4) Next, we'll use some formulas.
Counting re-entries for each task (counts “extra entries” in statuses: max(0, count − 1)):
=ARRAYFORMULA ( IF(A2:A="","", BYROW(H2:U, LAMBDA(r, SUM( IF( (H1:U1<>"") * ISNA(MATCH(H1:U1, 0)), IF(r>1, r-1, 0), 0)))))),
where H2:U is the range of your statuses.
All entries in statuses for each task:
=ARRAYFORMULA( IF(A2:A="","", BYROW(H2:U, LAMBDA(r, SUM( IF( (H1:U1<>"") * ISNA(MATCH(H1:U1, $X$2:$X, 0)), r, 0 ))))))
Status Churn Score (SCS) for each task:
=ARRAYFORMULA( IF(A2:A="","", IF(W2:W=0, 0, W2:W / X2:X) )),
where W2:W - Re-entries for each task, X2:X - All entries for each task.
You can also calculate the overall indicators:
SCS (scope) : =SUM(W2:W) / SUM(X2:X)
Churn Prevalence — % of tasks with any repeated entries: =COUNTIF(X2:X, ">0") / COUNTA(FILTER(B2:B, B2:B<>"")),
where B2:B - issue keys; it is important to note that here X2:X, “>0” instead of zero, you must specify the number of statuses in your table, i.e. if, under normal task flow without ping-ponging, the adequate number of entries is 9, then we specify that number.
Start with a steady view.
Use the same scope and 90-day window each week. Save the filter (and the JSON link, if you use Sheets) so it’s one click to refresh.
Change one thing, not ten.
Pick a single habit to fix (split an overloaded In Review, add explicit Waiting, merge duplicate statuses). Announce it in plain language, make the update, and let boards breathe.
Measure quietly.
Recalculate SCS next week—same scope, same window. Look for a gentle downward slope in SCS, fewer issues showing churn (Prevalence), and a shrinking Hotspot.
Leave breadcrumbs.
One sentence in a shared place: “Split Review → SCS 0.36 → 0.28; hotspot moved from Review to QA; owner: Alex.” Long debates optional; clarity mandatory.
Prefer reversible moves.
Use validators/guards behind toggles. If a tweak backfires, roll it back without drama and try the next smallest step.
Make it a 5-minute habit.
In standups, glance at what’s waiting and which hotspot needs a nudge. Small nudges, repeated, beat big reorganizations that never land.
Avoid hard “good/bad” thresholds. Baseline against yourself. A review-heavy product team will have a different “normal” than a short-cycle service desk. Direction matters more than absolutes.
Keep fixes reversible and boring on purpose. Boredom is a feature in governance.
When the loops shrink, conversations get clearer, delivery steadies, and the rest of your metrics follow—without changing tools, only how you use them.
Iryna Komarnitska_SaaSJet_
Product Marketer
SaaSJet
Ukraine
10 accepted answers
0 comments