I am having the same issue, I have a complex linking structure, and I cant find a way to bring all information together seamlessly on a timeline, calendar, or gant. If we could somehow pull dependancies from other tables that would be very useful.
> The ability to sync from multiple tables within the same base would really help here.
Sigh yeah it would
When encountering this scenario of having two tables with dates and one single timeline / gantt table, I create automations to create records in the timeline / gantt table
So if I create a record in Table 1 or 2, it'll create a record in the `Timeline` table and link it. In the `Timeline` table, i'll have lookups that display the start and end dates from both tables, and create a formula field that will consolidate those dates
The timeline / gantt will then use those consolidated date fields
> The ability to sync from multiple tables within the same base would really help here.
Sigh yeah it would
When encountering this scenario of having two tables with dates and one single timeline / gantt table, I create automations to create records in the timeline / gantt table
So if I create a record in Table 1 or 2, it'll create a record in the `Timeline` table and link it. In the `Timeline` table, i'll have lookups that display the start and end dates from both tables, and create a formula field that will consolidate those dates
The timeline / gantt will then use those consolidated date fields
Sounds like a good workaround. Don't think this will work for me though, I want to be able to link date events in my "Timeline" table to various records in several other tables that don't have start/end dates themselves, eg:
Event A with start date X and end date Y on table "Timeline", involving artist B from table "Artists" and venue C from table "Venues" and contractors D, E and F from table "Contractors".
Direct linking would allow me to see all events for a specific artist, venue or contractor in the relevant tables, which I can't do right now, unless I'm missing something.
Sounds like a good workaround. Don't think this will work for me though, I want to be able to link date events in my "Timeline" table to various records in several other tables that don't have start/end dates themselves, eg:
Event A with start date X and end date Y on table "Timeline", involving artist B from table "Artists" and venue C from table "Venues" and contractors D, E and F from table "Contractors".
Direct linking would allow me to see all events for a specific artist, venue or contractor in the relevant tables, which I can't do right now, unless I'm missing something.
Hm, I think I don't fully understand your workflow so I put something together here for you to have a look at. If you could let me know what additional stuff you're aiming to have I could see whether I can think of anything?




All good if you don't have time to explore this; best of luck either way!
Hm, I think I don't fully understand your workflow so I put something together here for you to have a look at. If you could let me know what additional stuff you're aiming to have I could see whether I can think of anything?




All good if you don't have time to explore this; best of luck either way!
Thanks a lot for setting this up, much appreciated. I think this kind of thing might improve things, although I'd have to add date fields to each individual table I want to use and rejig how some of the linking works. I'm just trying to figure out how you did the formula date field on the timeline table, any tips? Can this be used as the date range in a timeline/calendar/gantt view, even though it's not a "proper" date field?
Thanks a lot for setting this up, much appreciated. I think this kind of thing might improve things, although I'd have to add date fields to each individual table I want to use and rejig how some of the linking works. I'm just trying to figure out how you did the formula date field on the timeline table, any tips? Can this be used as the date range in a timeline/calendar/gantt view, even though it's not a "proper" date field?
> I'm just trying to figure out how you did the formula date field on the timeline table, any tips?
Ah, here's the formula:
IF(
{Start (from Events)},
{Start (from Events)},
{Start (from Tasks)}
)
You can also duplicate the base to view the formulas I believe
> Can this be used as the date range in a timeline/calendar/gantt view, even though it's not a "proper" date field?
Yeap it can
Oh right, so simple! I was messing around with all sorts of nestled IFs and Datetime_Format business...
Thanks very much, super helpful.