HomeGoogle DocsSpreadsheetReverse Running Count Simplified in Google Sheets

Reverse Running Count Simplified in Google Sheets

Published on

This tutorial is all about getting the reverse count of occurrences of items in a list.

It’s called reverse running count, and I have a simplified version of an array formula that works perfectly in Google Sheets.

What do you mean by a simplified version?

Long back, I have shared an array formula for the same that is somewhat complex. You can find that here – Get the Count of Occurrences in Each Row in Google Sheets (Combo Formula).

Later, I have found out that it’s simple to transform a running count array formula to reverse running count.

I’ll explain how to do that below.

Example

Example to Reverse Running Count in Google Sheets

The above list (A1:C) contains three names in multiple occurrences, and they are “Angelica Sanders,” “Sandy Reyes,” and “Sarah Vaughn.”

Take a look at column F for the reverse count of occurrences of names in the list.

How do they come into use in a real-life scenario?

The reverse running count formula will be widely useful to filter the list in several ways.

Here are two FILTER function-based formulas.

With the formulas, I want to filter the advance amount taken by each person (column C) in the last/recent time.

If the list is arranged from oldest to newest, use the reverse running count column in the filter criteria.

=filter(A2:C9,F2:F9=1)

Result:

AngelicaSanders450
SandyReyes1100
SarahVaughn700

On the contrary, if the list is arranged from newest to oldest, use the running count column in the filter criteria.

=filter(A2:C9,E2:E9=1)
AngelicaSanders500
SandyReyes1000
SarahVaughn750

Array Formula for Reverse Running Count in Google Sheets

The simplified way to return the reverse running count in Google Sheets is to use COUNTIFS in array form. Here is how.

F2 Formula:

=ArrayFormula(
     if(
        B2:B="",,
        COUNTIFS(
           sort(row(B2:B),1,0),
           "<="&sort(row(B2:B),1,0),
           A2:A&"-"&B2:B,
           "="&A2:A&"-"&B2:B
        )
     )
)

In the above list, the duplicate names are in adjoining rows. I have just arranged the list likewise to make you understand what the formula returns.

Revrese Running Count – Formula Explanation

Other than COUNTIFS, the rest of the formula part is to restrict the formula fill. So I am ignoring that part in the explanation part below.

Syntax: COUNTIFS(criteria_range1, criterion1, [criteria_range2, …], [criterion2, …]).

criteria_range1 – sort(row(B2:B),1,0)

criterion1 – "<="&sort(row(B2:B),1,0)

criteria_range2 – A2:A&"-"&B2:B

criterion2 – "="&A2:A&"-"&B2:B

In this formula, criteria_range1 and criterion1 hold the key.

If you remove that, you will get the count of occurrence of names in each row. Not the running count in each row.

=ArrayFormula(if(B2:B="",,COUNTIFS(A2:A&"-"&B2:B,"="&A2:A&"-"&B2:B)))
How Part of the Formula Returns Cumulative Occurrences in Sheets

The above reverse running count array formula works like this in Google Sheets.

It tests the list for duplicates of the strings (names) in two ways.

  1. The combined names (first and last names) are equal to the combined first and last names. That’s the creteria_range2 and criterion2.
  2. Then tests the reverse sorted row numbers are less than or equal to the reverse sorted row numbers. That’s the creteria_range1 and criterion1.

I know the first point doesn’t require any explanation.

Regarding point 2, let’s test/compare a single row number (994) with the reverse sorted row numbers (1000 to 993).

Please see the following screenshot which is self-explanatory.

Testing Reverse Running Count and Logic

The formula returns TRUE up to the criterion from the bottom.

I hope that makes sense.

Update: The below formula will also work.

=ArrayFormula(
     if(
        B2:B="",,
        COUNTIFS(
           row(B2:B),
           ">="&row(B2:B),
           A2:A&"-"&B2:B,
           "="&A2:A&"-"&B2:B
        )
     )
)

Related Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Running Total By Month in Excel

This tutorial demonstrates how to calculate the running total by month in a range...

SORT and SORTBY – Excel Vs Google Sheets

While Excel offers the SORT and SORTBY functions for sorting a table, Google Sheets...

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

More like this

Creating Sequential Dates in Equally Merged Cells in Google Sheets

Do you know how to create sequential dates in equally merged cells across a...

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.