Question
Could you please advise on the best approach? There are fields that automatically pull values into the table from other tables when a specific field is filled in:
=: select(table: 'some_table'; field: 'art'; where: 'id' = #id_link)
And if the fields are sequential, everything works, but I need the "number" field, which is at the very beginning, to pull the activity direction number, which is selected by a select from another table, using similar code. And this doesn't work. What should I do?
Answer
Codes in fields in Totum are executed from top to bottom and left to right. To achieve what you want, you need to place the field by sort after the field it depends on and move the display of this field to the beginning using the field parameter "Display elsewhere".