|
Welcome to the Google Sheets Tips newsletter #386, your Monday morning espresso, in spreadsheet form! Similar to Sheets Tip #384 from a couple of weeks ago, we're keeping it light hearted with today's tip. In this case, I'm showing you one of Google Sheets' secret easter egg functions! Read on to find out what it is and what it does. β Sheets Tip #386: Is your Sheet feeling crowded? Build a meadow πWeβve all been there: youβre focused on giving a demonstration in your Sheet to colleagues or clients but other people's cursors are dancing around in your Sheet like hyperactive mice. Itβs distracting and makes your screen appear cluttered. Here's a proposal for you: solve this with one of Google's secret, undocumented functions: CURSORPARK π Hidden Cursor Park FormulaNext time you're sharing a Sheet with coworkers, ask everyone to kindly put their cursors inside the "cursor park" to keep the Sheet organized. Create a meadow for your cursors with the CURSORPARK function: =CURSORPARK() It will look like this in your Sheet: Build Your OwnNow, being the power users that we are, it's a fun challenge (and good practice) to try and recreate this ourselves with formulas. Give it a try first before reading the solution below. Hint: Try using MAKEARRAY to create an array output. Let's build it in layers (like an onion). Step 1: Build an array of coordinatesThis MAKEARRAY formula outputs a grid of coordinates 1,1 or 1,2 or 1,3 etc.: =MAKEARRAY(5,8,LAMBDA(r,c,r&","&c)) The "r" is the parameter representing the 5 rows. The "c" parameter represents the 8 columns. Step 2: Add the perimeter of "trees"Add these IFS and OR functions to turn the outer row and columns into "trees" with the tree emoji: "π³" =MAKEARRAY(5,8,LAMBDA(r,c,IFS(OR(r=1,r=5,c=1,c=8),"π³",TRUE,r&","&c))) Step 3: Add the animalsTurn specific coordinates into animal emojis by adding some AND clauses: =MAKEARRAY(5,8,LAMBDA(r,c,IFS(
OR(r=1,r=5,c=1,c=8),"π³",
AND(r=4,c=2),"π»",
AND(r=3,c=3),"π",
AND(r=2,c=5),"π ",
AND(r=2,c=7),"π",
AND(r=4,c=7),"π",
TRUE,"")))
Of course, you can always turn to Gemini to generate formulas for you. Cheers to zen Sheets! If you enjoyed this newsletter, please forward it to a friend who might enjoy it. Have a great week! Cheers, P.S. Google Docs feature to show how long until AI replaces you (satire) |
Get better at working with Google Sheets! Join 50,000 readers to get an actionable tip in your inbox every Monday.
Hi Reader, Welcome to the Google Sheets Tips newsletter #391, your Monday morning espresso, in spreadsheet form! (Sorry there was no newsletter last week. I was sick!) This week we're looking at a cool use case for Google Sheets that most folks have no idea about. Creating QR codes! With a few simple formulas you can create QR codes in your Sheets that you could use to track inventory, accept invitations, or even print out to use at an event. First, a housekeeping announcement: after today,...
Hi Reader, Welcome to the Google Sheets Tips newsletter #390, your Monday Tuesday* morning espresso, in spreadsheet form! * public holiday in the US yesterday. Speaking of coffee, I usually work from my local coffee shop twice a week. It makes for a nice change of scenery from home. And everytime I order the same thing: a regular cappuccino, no frills, no syrups, no fancy milks. I think it says a lot about my personality and stage in life. As a working parent, neck deep in the world of AI,...
Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #389, your Monday morning espresso, in spreadsheet form! After a major work sprint to launch the 28 Days to Gemini Mastery course earlier this spring, I recently took a few weeks off to visit my brother and his family in Australia. We spent time hiking and packrafting in Tasmania's remote and beautiful Southwest National Park. It was an incredible trip and, without cell service for 12 days, a true break from the noise...