Hi
"The main drawback of this method is that whenever I create a new to do item, I have to remember to populate the Event Date column of that record, because Airtable doesn’t currently have an autopopulate function.”
But isn’t your lookup auto populating the date (rollup field form the event) once you select a linked event?
This sounds like the way I would do it… for what that may be worth!
Yes it is, but because there’s only ever one event per base, I don’t want to have to select the event each time I create a new to-do item.
Yes it is, but because there’s only ever one event per base, I don’t want to have to select the event each time I create a new to-do item.
I suspect, if you look at any of the last dozen or so bases of mine, you’ll find just such a construction: Somewhere, there’s almost certainly a table containing only one record, and that record will be linked to all the records in at least one of the other tables. Typically, this is for one or more of the following reasons:
- in support of ‘global’ constants
- to get around Airtable’s prohibition against performing lookups or rollups against fields of the same table
- to create a centralized junction table through which data pass to and from other tables, rather than requiring each table to link to every other table
To date, I’ve not found any way around this mandatory link. However, I do think I’ve found a way to minimize its intrusiveness while providing an easy visual confirmation the link has indeed been made.
If you’ll take a look at this base, near the center you’ll notice a column of check boxes labeled Aggregate
.They don’t look like Airtable checkbox field checks, as they use a different emoji character; they are also slightly blue-tinted, indicating they are actually linked records. More precisely, they are many-to-one links between each record in the Daily Closing Price table and a record in the Aggregation table with the name ‘
’.
Once I’ve defined the Aggregation table. I paste a ‘Heavy White Check Mark’ emoji –
– into the Name
field of the first record. I then delete any other records from the table so that only
remains. Once I return to the Daily Closing Price table and begin data entry, each record I add — as you noted — must be linked explicitly to Aggregation. Doing so takes no more than two mouse clicks a few seconds apart.: As you enter the new DCP record, when you come to Aggregate
, click once on the plus sign (’+’) to create a link record and pop open a window to the Aggregation table; click a second time on the sole existing record, ‘
’, to establish the link and close Aggregation.
Admittedly, it’s more work than no work — but it’s not all that much work. And the use of ‘
’ for the record’s does make it easier to tell which records haven’t been linked, while at the same time it helps declutter the DCP table visually. As workarounds go, it is respectively unobtrusive.
I suspect, if you look at any of the last dozen or so bases of mine, you’ll find just such a construction: Somewhere, there’s almost certainly a table containing only one record, and that record will be linked to all the records in at least one of the other tables. Typically, this is for one or more of the following reasons:
- in support of ‘global’ constants
- to get around Airtable’s prohibition against performing lookups or rollups against fields of the same table
- to create a centralized junction table through which data pass to and from other tables, rather than requiring each table to link to every other table
To date, I’ve not found any way around this mandatory link. However, I do think I’ve found a way to minimize its intrusiveness while providing an easy visual confirmation the link has indeed been made.
If you’ll take a look at this base, near the center you’ll notice a column of check boxes labeled Aggregate
.They don’t look like Airtable checkbox field checks, as they use a different emoji character; they are also slightly blue-tinted, indicating they are actually linked records. More precisely, they are many-to-one links between each record in the Daily Closing Price table and a record in the Aggregation table with the name ‘
’.
Once I’ve defined the Aggregation table. I paste a ‘Heavy White Check Mark’ emoji –
– into the Name
field of the first record. I then delete any other records from the table so that only
remains. Once I return to the Daily Closing Price table and begin data entry, each record I add — as you noted — must be linked explicitly to Aggregation. Doing so takes no more than two mouse clicks a few seconds apart.: As you enter the new DCP record, when you come to Aggregate
, click once on the plus sign (’+’) to create a link record and pop open a window to the Aggregation table; click a second time on the sole existing record, ‘
’, to establish the link and close Aggregation.
Admittedly, it’s more work than no work — but it’s not all that much work. And the use of ‘
’ for the record’s does make it easier to tell which records haven’t been linked, while at the same time it helps declutter the DCP table visually. As workarounds go, it is respectively unobtrusive.
This is SO incredibly useful! Thanks, you made my day!