Sheets Tip 321: An elegant formula built with the 🧅-method


Brought to you by:


Hi Reader,

Welcome to the Google Sheets Tips newsletter #321, your Monday morning espresso, in spreadsheet form!

Halloween is just around the corner and it's huge deal if: 1) you have kids, and 2) you live in America. It's one of the biggest nights of the year, no joke. In my 20s and 30s, before children and living in the UK, it mostly just passed me by ;)

But here we are, busy preparing our costumes. This year my sons have chosen LEGO as the theme. Rest assured I'll share a family photo in due course!

In today's newsletter, we're looking at an elegant formula for finding the factors of a number. There's a lot to like (and learn!) about this formula.

Check it out below.

But first, a message from our friends at Set & Forget:

Brought to you by: Set & Forget

Imagine the seamless Google Workspace of your dreams... We'll build it for you!

If you're paying for tools that don't meet your needs, or you're lost among all the Google Workspace options, it's time for a change.

We specialize in custom Google Workspace development that's designed specifically for your business. Say goodbye to cookie-cutter tools and hello to solutions that streamline your operations and workflow.

Why settle for inadequate tools when our developers can muscle your Google Sheets into peak performance? Custom solutions that work as hard as they do, no sweat required!


➜ Sheets Tip #321: An elegant formula built with the 🧅-method

In this tip, we're going to build a beautiful formula to find the factors of a number (the integers that divide a number exactly).

Whether you love mathematics or not, as a Google Sheets aficionado, you'll appreciate this formula.

We're going to build it in steps from the inside out, like layers of an onion 🧅.

Step 1

Let's use the number 321 for this experiment, since we're on tip 321. It's also a very likeable number ;)

So, with 321 in cell A1, enter this SEQUENCE function into cell B1:

=SEQUENCE(A1)

This outputs a column of numbers 1,2,3,...321 in column B.

Step 2

In C1, enter this MOD function, with $ signs around the A1 to lock the reference:

=MOD($A$1,B1)

Copy this formula down column C.

This takes the value in A1, which is 321, and divides it by the value in column B and returns the remainder after the division.

For example, 321 divided by 2 gives a remainder of 1 (2 goes in 160 times with a 1 left over).

Step 3

In column D, let's test to see which rows contain 0, i.e. a remainder of 0 after the division.

Enter this formula in cell D1 and copy down the column:

=C1=0

This gives a column of TRUE/FALSE values, where TRUE indicates rows with 0 remainder.

Since we have TRUE/FALSE values we can use a FILTER function to extract the TRUE rows.

Step 4

Enter this formula in cell E1:

=FILTER(B:B,D:D)

This returns the results from column B wherever there is a TRUE value in column D:

I've highlighted the first two rows with TRUE.

The result is:

1
3
107
321

These are the four factors of 321 (that is, an integer that may be multiplied by some other integer to produce 321).

Step 5

Finally, we can nest the intermediate steps to create a single formula that finds the factors of any number:

=FILTER(SEQUENCE(A1), MOD(A1, SEQUENCE(A1))=0)

The FILTER function is one of my all-time favorite functions.

It works with arrays without the clumsiness of the ARRAYFORMULA designation.

Step 6 - Bonus Challenge :)

Can you modify this final formula to list the factors in a single cell, separated by commas:

1,3,107,321

Good luck!


Dropdown - Deep - Dive -

This week in Sheets Insiders, we're looking at dropdown menus in detail.

Specifically:

  • A clever method for auto-updating dropdowns
  • Working with the new multi-dropdowns
  • How to build dependent dropdowns with formulas
  • How to build dependent dropdowns with scripts
  • And more!

Look out for the Sheets Insiders email in your inbox on Thursday!


If you enjoyed this newsletter, please forward it to a friend who might enjoy it.

Have a great week!

Cheers,
Ben

P.S. Halloween is almost here and the witches are out!

Google Sheets Tips

Get better at working with Google Sheets! Join 50,000 readers to get an actionable tip in your inbox every Monday.

Read more from Google Sheets Tips

Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #359, your Monday morning espresso, in spreadsheet form! Have you noticed how much Google Sheets has changed in the past couple of years? We tend to think of spreadsheets as static tools, but that's just not the case. When I open a Sheet today I invariably use Tables and AI tools, both of which weren't available a few years ago. So I’ve been building something new to help you get fully up to speed with the modern way...

Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #358, your Monday morning espresso, in spreadsheet form! Today's tip comes from an accidental discovery I made whilst researching a trick with the LEFT and RIGHT functions. Let me ask you... What do you think happens with this formula? (Answer before trying it in your Sheet ;) ) = "A" < "B" Answer #VALUE! error TRUE #NUM! error Check out the answer in today's tip and see a real-world application below. ➜ News I.Google...

Brought to you by: Hi Reader, Welcome to the Google Sheets Tips newsletter #357, your Monday morning espresso, in spreadsheet form! Coming to your inbox on a Tuesday because it was a public holiday here in the US yesterday (Happy Labor Day!). I had a friend and his family visit (Mr Data School himself!). We had a great weekend exploring in the woods, watching the kids catch crayfish, and making s'mores over a fire in the evening. I feel recharged (and a little tired) and ready to dive into...