Add column to a view

Hi!

I don’t know if this is possible, but I would like to add a column to a view that doesn’t update the base table.

I have a master table of todos and views that filter for each week of the year. I’d like to be able to mark things as “done” during the week but not have that information go into the base table. Is that possible?

Thanks for any help you can provide!
Stef

My first suggestion is to let it update the base table anyway and hide that column in the base table. I personally find that having a master table helps make it easier to add new features and views.

The second option is to create a second table that reads from the base table using filters and Table Lookups. This way nothing in the new column is transferred to the base table.

1 Like