If you create #GoogleSheets that multiple people use, one super helpful thing you can do is add a sidebar to your Sheets, containing key info or instructions.
Today I'm going to show you how to create sidebars using the group columns feature...
STEP 1️⃣
Highlight some columns, right click, and choose Group columns.
This adds a button above the columns, which you can toggle to show/hide these grouped columns.
STEP 2️⃣
Right-click on the +/- button and select left or right to set the +/- toggle button to be on the left or right of the group.
STEP 3️⃣
Add the text "Click [+] for info" into the top cell next to your grouped columns.
Rotate the text to make it vertical and then merge cells with the rows beneath so it has space to be fully shown.
Change the background color of this column so that it stands out.
And that's it!
P.S. Credit to @dhensonroyall for first showing me this side panel technique in one of his dashboards.
• • •
Missing some Tweet in this thread? You can try to
force a refresh
The SEQUENCE function is an amazingly useful function in #GoogleSheets. It lets you create sequences of numbers from a single formula. The obvious use case is to create a count up 1, 2, 3, 4, 5 etc.
But did you know you can easily create a count down in your Sheets too? 👇
This single, simple formula:
=SEQUENCE(100,1,100,-1)
counts down from 100 e.g. 100, 99, 98, 97, 96...1
To count down from some other number, for example 50, change it as follows:
=SEQUENCE(50,1,50,-1)
Easy-peasy!
The four numbers you enter as arguments to the SEQUENCE function represent:
✅ Number of rows (e.g. 100)
✅ Number of columns (e.g. 1)
✅ Start number (e.g. 100)
✅ Step to increase/decrease by (e.g. -1)
The QUERY function in #GoogleSheets is pretty much the most powerful function in the spreadsheet world.
It operates on your data and has the functionality of many other functions, like sorting, aggregation, filtering, etc.
It's like a pivot table in function form.
(1/4)
It's a tricky function to learn because it's so different from regular functions. You use query language to write a statement that operates on your data.
Here's an example:
=QUERY(A1:E100,"select B, D, E where D = 'Europe'",1)
(2/4)
The function operates on data in the range A1:E100.
It returns only columns B, D and, E from that data in columns A to E, and applies a filter so that only rows where column D is equal to "Europe" are in the results.