94 – Updating Your Automated Monthly Planner

Back in 2024, I made a post about creating a year’s worth of monthly planners using a mixture of Google’s Sheets, Apps Script, and Docs. In brief, I was sick of spending about an hour or two manually making these planners so I made it a (near) automated process. What I’ve created in this post is how to create a new set of monthly planners for 2026.

  1. Open the spreadsheet,
  2. Duplicate the sheet Dates and rename it to 2026 Dates:
  1. Change Cell A2 to 01/01/2026; all subsequent cells will automatically adjust:
  1. Delete the original Dates (2025 Dates) sheet,
  2. Open the script; Extensions > Apps Script:
  1. Update the following variables:
    1. If you’re changing the stored folder location:
      1. Line 2: var folderId = “<insert new folder ID here>“; // Replace with your folder ID,
    2. If you’ve changed the sheet name:
      1. Line 7: var sheet = SpreadsheetApp.openById(sheetId).getSheetByName(‘<insert new sheet name here>‘);:
  1. Make sure that the function ‘createMonthlyPlanners’ has been selected, then click Run:
  1. You may need to authenticate the app again.

There you have it; a new set of monthly planners for 2026:

Planned Future Upgrades

  • Allocate a specific space in my Google Drive for these planners, e.g. a parent folder,
  • Implement a function that detects when a new year has started, e.g. NOW(),
  • Create a new folder, named 20XX,
  • Pull in the newly created FolderID,
  • Integrate these upgrades with the steps above, and
  • Trigger the script to run in the new year.

Leave a comment