So instead of a lookup, you’ll want to use a rollup field with ARRAYUNIQUE(values)
. This will dedupe the list. By default, the array will be joined with (what looks like ) ,
, but we want something unique for the next step, so we’ll use ARRAYJOIN
with an emoji, such as 🧾
. This gives the final formula of:
ARRAYJOIN(ARRAYUNIQUE(values),"🧾")

Once we have that field set up, we’re going to use a formula field and two Excel tricks.
Excel trick #1: To count the number of items in a list, count the commas (instead of the items), and then add one (to account for the first item that doesn’t have a comma before it). In this case, we’re going to be using the emoji as a separator instead of a comma. There are other methods, but this works within the limitations of arrays and formulas in Airtable.
Excel trick #2: To count the instances of a character within a single string, substitute that character with nothing and comparing the length of the new string against the original.
Here’s what that looks like:
IF(
{Unique Quiz Dates},
1 +
LEN({Unique Quiz Dates})
- LEN(
SUBSTITUTE({Unique Quiz Dates}, "🧾", "")
),
0
)
Here’s a base demonstrating the rollup and formula fields:
So instead of a lookup, you’ll want to use a rollup field with ARRAYUNIQUE(values)
. This will dedupe the list. By default, the array will be joined with (what looks like ) ,
, but we want something unique for the next step, so we’ll use ARRAYJOIN
with an emoji, such as 🧾
. This gives the final formula of:
ARRAYJOIN(ARRAYUNIQUE(values),"🧾")

Once we have that field set up, we’re going to use a formula field and two Excel tricks.
Excel trick #1: To count the number of items in a list, count the commas (instead of the items), and then add one (to account for the first item that doesn’t have a comma before it). In this case, we’re going to be using the emoji as a separator instead of a comma. There are other methods, but this works within the limitations of arrays and formulas in Airtable.
Excel trick #2: To count the instances of a character within a single string, substitute that character with nothing and comparing the length of the new string against the original.
Here’s what that looks like:
IF(
{Unique Quiz Dates},
1 +
LEN({Unique Quiz Dates})
- LEN(
SUBSTITUTE({Unique Quiz Dates}, "🧾", "")
),
0
)
Here’s a base demonstrating the rollup and formula fields:
Wow @Andy_Lin1 thank you so much for your help and the example base, that did it! And I love the Excel counting tricks.
I’ve still got some timezone debugging to do, but thrilled to have your help in solving this.