⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Calculating a value by code
  • Calculation order and calculation order error, how to show the field in a place other than the calculation order
  • Recalculation unit of tables, recalculation of rows and their order
  • Header in simple and calculated tables
  • Using the functions
  • Using the if and select functions as an example
  • How the where and order parameters work, by the example of select
  • The difference between a single value and a list, operations on lists (sum, min, max, count)
  • Using math for mathematical operations
  • Using str to combine text
  • Fixing a calculation when executing codes
  • Manual values
  • Execute code only when adding
  • The $#nd, $#ndt and $#ntn quick variables
  • Dates processing
  • Calculation errors and their details
  • 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
  • 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
  • The difference between a single value and a list, operations on lists (sum, min, max, count)

    table_recalc

    Does the select function select a single value or a list?

    There is a fundamental difference between a single value and a list.

    select returns a single value — for example, 3 or "screwdriver".

    There is a case when a select returns a list — this happens if you take the value of a field that stores a list. For example, select with the parameter multiple.

    A list looks like this: ["screwdriver","wrench","hammer"]. There can be a list with a single value, for example: ["screwdriver"], but this is not the same as a single value — the form is different.

    Does the selectList function select a single value or a list?

    selectList returns a list, even if the selection contains a single value — it will be a list with one value.

    If you take a list of field values that are themselves lists, you will get a list of lists.

    There is a function that will help you concatenate these lists one after another — listTrain.

    If the field is for a single value and a list is passed to it?

    It's better to avoid such situations. If this happens, the value will not be displayed or there will be an error.

    If a list is selected, how do I take one value from it?


    =:
    $list[1] list: listCreate(item: "A"; item: "B"; item: "C") // Result: B

    How do I convert one value to a list?


    =:
    listCreate(item: $value) value: 10

    =:
    json`[$value]` value: "cucumber"

    What basic operations can be performed with lists?

    There is a whole section of functions related to list processing: