Right now, I am creating two new columns Doc_ID and Table_ID and turning them into Formula columns and manually setting the values to <Document_id> and <Table_id>.
Is there a way to add this information to the webhook automatically?
If that is a no, is there a way to generically get the data in a Formula column so that I can copy that across tables?
Hi @Adarsh_Raj.
There isn’t really a way to get the document or table ID from a formula. For the latter, doing something like Table1.table.table_id
or rec._table.table_id
may work today - even when Table1
is renamed - but it’s an internal detail of the formula engine that may change in the future.
George