⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • How do comparisons work in codes?
  • How do I check if one list contains another?
  • How to turn off where by the conditions
  • The insert line has no id
  • How to create lists fast
  • How do I take a row from a table and then get data from it?
  • What are associated array lists?
  • Specifying a field name by code, specifying a line of code by code?
  • A list of lists and turning it into a list
  • How do I sequentially go through the list and complete it or overwrite the values?
  • How do I filter and sort a list or a list of associated arrays?
  • Getting information about manual values, tree level, selects
  • How do while and var work? Replacing with listReplace
  • How to optimize the execution of the same code with variables passed to it?
  • How to use cond for condition?
  • How do I use the value of the previous row to calculate the current one?
  • Why do I need a column-by-column recalculation in the calculated and temporal tables?
  • How do I use the previous value in codes and combine manual input and code?
  • Row and rowList operations
  • Action codes advanced level
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • How to optimize the execution of the same code with variables passed to it?

    How to reuse parts of the code within the same code?

    In codes, it is possible to call a string, passing variables to it and all subsequent strings. This is also another method of creating variables and assigning them initial values.

    For example, let's compare 2 values taken by one select:


    =:
    if(condition: $sum{var: "num" = 1} = $sum{var: "num" = 2}; then: true; else: false) sum: listSum(list: $select) select: selectList(table: 'table'; field: 'field'; where: 'num' = $#num)

    This code in condition calls the same select twice, but passes different variable values to it, and as a result, this is equivalent to:


    =:
    if(condition: $sum_1 = $sum_2; then: true; else: false) sum_1: listSum(list: $select_1) select_1: select(table: 'table'; field: 'field'; where: 'num' = 1) sum_2: listSum(list: $select_2) select_2: select(table: 'table'; field: 'field'; where: 'num' = 2)

    In such a small example, it is better not to use {} as they are harder to read, but if the reusable part is large, this significantly simplifies the code.

    What is exec?

    The exec function allows executing code contained in another field or passed in the code parameter as text.

    When is exec effective?

    If you have multiple fields executing the same code with different parameters. For example, we have an annual report where each field represents a month.

    In the first field, we write:


    =:
    listSum(list: $list) list: selectList(table: 'table'; field: 'sum'; where: 'date' >= $datestart; where: 'date' <= $dateend) datestart: var(name: "datestart"; default: "2021-01-01") dateend: var(name: "dateend"; default: "2021-01-31")

    Note that we take datestart and dateend through var here, because in the first field these variables will not be defined and we need default values.

    In February, we write:


    =:
    exec(code: "name_first_field"; var: "datestart" = "2021-02-01"; var: "dateend" = "2021-02-28")

    Can we pass one var instead of several? Yes, we can:


    =:
    exec(code: "name_first_field"; var: "dates" = $row) row: rowCreate(field: "datestart" = "2021-02-01"; field: "dateend" = "2021-02-28")

    But then we need to modify the code in the first column:


    =:
    listSum(list: $list) list: selectList(table: 'table'; field: 'sum'; where: 'date' >= $dates[datestart]; where: 'date' <= $dates[dateend]) ~datestart: var(name: "dates"; default: $row) row: rowCreate(field: "datestart" = "2021-01-01"; field: "dateend" = "2021-01-31")

    If we run exec from the format section, how will it be executed?

    exec executes code of the type from which it is called.

    Will exec be executed if one of the parameters is not passed?

    No, it won't. That's why we used default.

    Another option, if in some cases the parameter is needed and in some cases it is not, is to pass it as an empty "" where it is not needed.

    How can I store exec codes?

    A good practice is to have a hidden field in the table where the executable code for exec will be stored in the corresponding section.

    However, you can create a special table to store such extracted codes — but it is better to avoid this.