i have a record table like this (simplified)
id | created at (datetime) | category(text or link to category table) | content | catrgory record count (?) |
1 | 2025-1-2 | cat-1 | 2 | |
2 | 2025-1-1 | cat-2 | 1 | |
3 | 2025-1-1 | cat-1 | 1 |
my idea ist to use a formula like this:
count records, where category = category and {created at} <= {created at}
somehow, all my approaches fail. tried rollup and formula.
if it helps, category fields are linked to another "categories" table. but i could not filter over linked cecords, because that would require linking two times - to the categories table and then back.
i want to avoid using an automation, because i have a large number of existing records, and an automation seems hacky for me. if there is no other way, i'll go this route, though.
i'd be glad for a hint or a lin to a documentation for a similar case 🙂