New shoulder patches for my hockey team’s 2018 rebrand
Blog
-
Convert alphabetical Google Sheet column names to numbers
Lately, I’ve been working with large Google spreadsheets that have many columns. When you write
QUERYstatements to pull data from one sheet into another, you have to useCol1,Col2,Col3column names instead ofA,B, andC. It’s hard enough to remember the letter O is the 15th letter of the alphabet. There is no chance that I am going to memorize that column BH is the 60th. I made this calculator to solve this conversion:[alphabet_number_calculator]
One of my favorite tricks when a team member needs some data is to create a new Sheet, query data from the primary sheet, and share that subset of the data while protecting the
A1cell so the formula doesn’t get mangled. This method lets our friend get only the columns she needs and live updates in the form of new rows just like the huge primary sheet. It works by passing anIMPORTRANGEcall into the first parameter ofQUERY.
