May 16, 2022 06:57 AM
Hello!
I have a submission table that lists dates of a submission and an associated “office” to each submission. There can be multiple submissions a day to the same or multiple offices. I want to use a rollup to gather the number of unique dates per office, so that I have a calculation of the total days of submissions associated with each office. Is this possible?
Thank you!
Solved! Go to Solution.
May 16, 2022 07:17 AM
Hi James, yeap, check this out. To view the formula, duplicate the base by clicking the title of the base at the top of the screen and then click the three horizontal dots on the right
The idea is we just make a rollup field inside the Offices
table of the linked Submission
records, and use the aggregation formula of COUNTALL(ARRAYUNIQUE(values))
This was a fun one to solve, and made me chuckle when I figured out the solution, so thank you for the brain teaser
May 16, 2022 07:17 AM
Hi James, yeap, check this out. To view the formula, duplicate the base by clicking the title of the base at the top of the screen and then click the three horizontal dots on the right
The idea is we just make a rollup field inside the Offices
table of the linked Submission
records, and use the aggregation formula of COUNTALL(ARRAYUNIQUE(values))
This was a fun one to solve, and made me chuckle when I figured out the solution, so thank you for the brain teaser
May 16, 2022 07:50 AM
Thank you this worked! I was close I was using Count instead of count all so it wasn’t working as I wanted it to.