|
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, I'm taking a planned break from the newsletter for a few weeks, until early July. I'm traveling, but I also want to create space to think about making some changes to this newsletter. The original newsletter mission—to share actionable Google Sheet tips each week—has served us well for nearly 10 years and 391 issues, but the world has changed a lot since then. I've been weaving in more Gemini content over the past couple of years, and that's where my focus is these days. So I'll be using the break to think about how to update the newsletter. Don't worry though, Sheets will still be part of my thinking. If you have thoughts or things you'd love to see covered, hit reply — I'd genuinely love to hear them. ➜ NewsI. ​Read more here >>​ ➜ Sheets Tip #391: Create QR codes in Google Sheets 𖣯This is one of those hidden superpowers of Google Sheets. A genuinely useful feature that really doesn't belong in the spreadsheet world but does. Best of all, it's really easy to do following the steps below. In a nutshell, we send the information to a special website that returns it formatted as a QR link. We insert this into Google Sheets' IMAGE function to convert it into an actual QR image that looks like this: Steps to create QR codes in Google SheetsFollow these simple steps to create your own QR codes. 1) Starting with the information, for example a link, in cell B2, use this formula to encode the value: =ENCODEURL(B1) 2) Then create a formula that includes the QR code generator API like so: ="https://api.qrserver.com/v1/create-qr-code/?size=150x150&data="&ENCODEURL(B1) Remember, this is a free public QR generator, so don't use it for sensitive information or private client information, etc. etc. 3) Next, wrap this with the IMAGE function to display the QR code: =IMAGE("https://api.qrserver.com/v1/create-qr-code/?size=150x150&data="&ENCODEURL(B1)) In our Sheet, it looks like this: You'll need to "Allow Access" with the IMAGE function the first time you set it up in a Sheet: NoteIf you plan to include a QR code in a document you're sharing, then you'd be advised to convert it to a static image rather than leaving it as a live formula. Highlight the cell with the QR code, copy it, then go to a different cell and paste it as values. To do this, use:
OR
Use CasesHere are a few ideas for how you might use these QR codes:
If you enjoyed this newsletter, please forward it to a friend who might enjoy it. Have a great week! Cheers, |
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 #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...
Hi Reader, Welcome to the Google Sheets Tips newsletter #388, your Monday morning espresso, in spreadsheet form! ➜ Sheets Tip #388: Merged Cells To many power users who live in spreadsheets, merged cells are often treated like a patch of poison ivy on a hiking trail. They see them, turn their nose up, and steer well clear. But are they always the villain? Let's find out. Why Purists Cringe At Merged Cells In a structured dataset or a table, merged cells are, quite frankly, a nightmare. They...