Sheets Tip 371: Welcome to 2026 🎉


Brought to you by:


Hi Reader,

Happy New Year! 🎉

Welcome to the Google Sheets Tips newsletter #371, your first Monday morning espresso of 2026, in spreadsheet form!

I usually write a year-in-review post over the holidays but this holiday was so busy that I didn't get round to it. It's a valuable exercise to reflect on the year gone and think about what I want to achieve this year. So I'm still planning to write one and will share it when I do.

I hope you had a wonderful holiday season and feel recharged as we head into 2026. I had a lovely break, spending time with family and friends. We stayed local for Christmas and then headed up to western New York for a (very) snowy New Year adventure.

My boys were not happy at the idea of going back to school this morning and I think we can probably all relate ;)

I wish you all the best for this coming year.


➜ News

I.
Data Tables
are a new feature in NotebookLM that help you organize data into a structured format for export to Google Sheets.

Read more here >>


Brought to you by: Shortform

Shortform: The Cheat Code for Smarter Reading

Too many books on your reading list? Shortform can help you get the ideas without losing so many hours.

Shortform turns nonfiction books into clear, chapter-by-chapter guides, so you can jump straight to the main points without losing context.

  • Simple explanations and smart commentary to deepen your understanding
  • Short prompts to turn insights into real changes
  • Guides to thousands of titles across productivity, decision-making, leadership, psychology, and more
  • An extension that summarizes web pages and videos, so you can scan key ideas before committing your time

Use Shortform when you want the value of a book without adding to your “to read” pile.


➜ Sheets Tip #371: Welcome to 2026!

It's always strange the first few times you write 2026. Like "I can't quite believe it's a new year again" sort of strange.

Last year, we looked at the number 2025 and how we could create it with formulas in Google Sheets.

Let's see what formulas and facts we can derive starting with the number 2026.

Start with the number 2026 in cell A1 and then try these different formulas:

1) The ROMAN formula converts to Roman numerals: MMXXVI

=ROMAN(A1)

2) This SPLIT formula splits 2026 into separate cells 2, 0, 2, and 6:

=SPLIT(REGEXREPLACE(TEXT(A1,"0"),"","✂️"),"✂️")

3) This function sums the digits:

=SUM(SPLIT(REGEXREPLACE(TEXT(A1,"0"),"","✂️"),"✂️"))

4) This BASE function converts the number to binary 11111101010:

=BASE(A1,2)

5) And this rather more complicated REDUCE formula converts this binary number back to the integer 2026 (assumes the binary number is in cell B1):

=ArrayFormula(LET(
bin, B1,
chars, MID(bin, SEQUENCE(LEN(bin)), 1),
REDUCE(0,chars,LAMBDA(acc, c, acc * 2 + VALUE(c)))))

6) Finally, here's an esoteric BAHTTEXT formula that prints the number 2026 as words in our Sheet:

= LET(x, GOOGLETRANSLATE( BAHTTEXT(A1),"th","en"), LEFT(x, SEARCH(" baht",x)))

If you enjoyed this newsletter, please forward it to a friend who might enjoy it.

Have a great week!

Cheers,
Ben

P.S. New Year Resolutions

Google Sheets Tips

Get better at working with Google Sheets! Join 50,000 readers to get an actionable tip in your inbox every Monday.

Read more from Google Sheets Tips

Hi Reader, Welcome to the Google Sheets Tips newsletter #378, your Monday morning espresso, in spreadsheet form! Last week, I shared an essay about how we’re at a threshold in 2026 where writing complex formulas from scratch doesn't make sense anymore (and others have come to similar conclusions). It’s simply no longer economically viable to spend 45 minutes wrestling with syntax when Gemini can generate the same result in seconds. Today, we’re putting that theory to the test with one of the...

Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #377, your Monday morning espresso, in spreadsheet form! Coming to your inbox on a Tuesday this week, because it was a public holiday here in the US yesterday. Today I'm pondering whether it makes sense to write your own formulas anymore. AI tools are getting so good at writing formula syntax (and Apps Script code) that it doesn't make sense (economically at least) to spend hours crafting complex formulas yourself, if...

Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #376, your Monday morning espresso, in spreadsheet form! I've been using Gemini and Gemini Canvas a lot recently for various projects. It's mind-blowing how quick it is at generating formulas and scripts that work. We're definitely at the threshold (or maybe already past it 🤔) where it doesn't make sense to write your own complex formulas or code from scratch (for specific problems with limited scope). Having said...