Hi! Just wanted to know if it is possible now to have a one big calendar view in coda that contains two different tables with different columns?
So, I have a table for Projects and a table for Procurement. I want to see in one calendar the Target Start Date of a Project from Projects table, and the Order Date from Procurement table.
Using this button, in each click I will delete all rows from MetaCalendar, and add each row from project, then the same for Procurement, to populate a fresh version of MetaCalendar
Be my guest !
With this logic, you can “send” any common data from different tables to a master table (we could imagine also “end date” to display in the calendar begin/end of the event).
Of course, this solution (without packs or techy stuff beyond Coda Formula Language) is absolutely not scalable. If you’ve 10 different tables to aggregate, you need to create 10 ForEach() formula inside your button (well, once you’ve done it, it’s finished !).
Also, deleting all rows from MasterCalendar is quite rough, you may want to use AddOrModifyRows(, ), checking only modified data to be updated.
But well, let’s say this is a good starting point