|
Happy New Year! Another lap around the sun in the books. Wow, they go quickly don't they? ​2024 was my tenth year of working for myself in this weird little corner of the internet. And although 2024 had its challenges, there was lots to be grateful for. I'm genuinely excited to see where we go in 2025. Thank you for reading this newsletter and being part of that journey. Undoubtedly the biggest technology story of 2024 was how fast AI tools are developing and changing the way we work. In 2025, that will continue apace. I expect we'll see even bigger changes in how we work with spreadsheets and data this year. We're shifting to a world where we interact with our data via natural language (i.e. prompting) rather than technical syntax (i.e. formulas and code). This lowers barriers and lets more people mine insights from their data, not just the technically proficient. And that's a good thing. Welcome to the Google Sheets Tips newsletter #329, your Monday morning espresso, in spreadsheet form! Since it's the new year, I figured we could explore the new year number: 2025. Especially whilst we're still in that "doesn't it feel weird to write 2025 as the date?" phase. 2025 is a square numberInterestingly, anyone born in 1980, like me, will turn 45 this year. And 2025 is 45². In our Google Sheets, we can calculate squares a few different ways: =45 * 45 = PRODUCT(45,45) = MULTIPLY(45,45) = 45 ^ 2 = POW(45,2) = POWER(45,2) The POW function (a shorter version of the POWER function) raises a number to a power. ​PRODUCT and MULTIPLY multiply two numbers together. 2025 is also the sum of the numbers 1 to 9, squared. I.e. (1 + 2 + ... + 9)² = 2025 which we can calculate with this formula: =SUM(SEQUENCE(9)) ^ 2 2025 is also the sum of the cubed numbers 1 to 9. I.e. 1³ + 2³ + ... + 9³ = 2025 which we can calculate in our Sheet as follows: = ArrayFormula(SUM(SEQUENCE(9) ^ 3)) or by using a LAMBDA function: =SUM(BYROW(SEQUENCE(9),LAMBDA(i,POW(i,3)))) Finally, here's an esoteric formula that prints the number 2025 as words in our Sheet: = LET(x, GOOGLETRANSLATE( BAHTTEXT(2025)), LEFT(x, SEARCH(" baht",x))) Back to a... ahem, more practical Google Sheets tip next week! Cheers, |
Get better at working with Google Sheets! Join 50,000 readers to get an actionable tip in your inbox every Monday.
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...
Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #375, your Monday morning espresso, in spreadsheet form! We're still in an ice box on the east coast of the US with the snow set to hang around for a while yet. It's beautiful but I am looking forward to the ice melting so it's easier to get around. The Potomac river is covered with ice Today's newsletter is not directly related to Google Sheets. Instead, I'm sharing the sources I use to stay informed of AI...
Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #374, your Monday morning espresso, in spreadsheet form! Coming to you from the cold and snowy East Coast of the US. We didn't quite get the 20 inches of snow forecast earlier in the week, but we did end up getting around 8 - 10 inches of very dry, powdery snow. And with the temps rarely getting above 20 F (-7 C) this week, it's going to stick around for a while yet. School is closed so you'll probably find me and my...