HomeGoogle DocsSpreadsheetHow to Highlight Recurring Event or Payment Dates in Google Sheets

How to Highlight Recurring Event or Payment Dates in Google Sheets

Published on

If you want to highlight a recurring event or payment dates in Google Sheets, you can use a custom format rule in Format > Conditional Formatting.

How do we use that?

Let me dig deep into it.

We can highlight a cell or cell range in several ways in Google Sheets.

Here are some of the most common practices.

  1. Draw a thick border around the cells.
  2. Increase the font size.
  3. Use a background (fill) color.
  4. Make the text Bold, Italic, Underline, Strikethrough.
  5. Change the Text Color.

To highlight a recurring event or payment dates in Google Sheets, we can choose single or multiple highlighting options mentioned in points 3, 4, and 5 above.

They are the rules presently supported in Conditional Formatting.

Recurring events/payments can be weekly/biweekly/monthly meetings, monthly or periodic bill payments, subscriptions, gym memberships, etc.

Assume we have a recurring event that takes place every other week. Let’s see how to write a highlighting rule for that event.

We can later modify that formatting rule suitable for the predefined recurring event/payment interval.

Example to Highlighting Recurring Event or Payment Dates in Google Sheets

Here are two examples that to use depending on the orientation of the data that you have.

The Rule for Vertically Arranged Data

You can use the below recurring event/payment highlight rule, based on OR and MOD when the event/payment dates are arranged vertically in B2:B.

=or(B2=$F$1,mod(B2-$F$1,14)=0)

Assuming cell F1 contains the first event/payment date.

Rule to Highlight Recurring Event Dates in Google Sheets

The above format rule highlights dates in column B biweekly basis starting from the event/payment start date in F1, i.e., 28/07/2021.

To apply the above rule, please follow the below quick steps.

  1. Select B2:B100 (or the cell range that you want in column B).
  2. Click Format > Conditional Formatting.
  3. Apply to Range > B2:B100.
  4. Format Rules > Custom formual is.
  5. Insert the rule.
  6. Formatting Style > Fill Color > Green or your choice of color.

Points to be Noted

In the above example, the dates are arranged in chronological order. It’s not necessary to follow that. Even if the dates are shuffled, the formula (format rule) will work.

The dates sequence is also not necessary.

The above rule highlights the recurring event/payment dates happening every other week (biweekly).

To change the frequency of the events, change 14 in the formula with the corresponding days between two events/payments.

I have multiple events/payments. How do I apply all of them?

Example:-

If you have one more event, enter that event start date in cell F2.

Here is the second rule to use. Don’t forget to choose a different color.

=or(B2=$F$2,mod(B2-$F$2,14)=0)

This way you can apply more format rules.

Highlight Horizontally Arranged Recurring Event or Payment Dates

This time I want to highlight the recurring event dates in B2:Z2.

The event start date is in cell B5.

=or(B2=$B$5,mod(B2-$B$5,14)=0)
Horizontal Dates and Highlight Rule

To apply the rule, please follow the above six quick steps (the cell range should be B2:Z2, not B2:B100).

Resources

Resources Related to Highlighting Duplicates in Google Sheets

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.