⟵ 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 $#nd, $#ndt and $#ntn quick variables

    execute_code_only_when_adding

    How do I specify in the code to take the current date?

    In Totum, there are a number of quick variables that are called through $#. The most frequently used ones are date variables:

    • $#nd — current date without time, short for (now date).

    • $#ndt — current date with time, short for (now date time).

    For example, if you need to calculate the production time — current date plus 10 days:


    =:
    dateAdd(date: $#nd; days: 10)

    How can I specify in the select function what to take from the current table?

    Quite often it is necessary to say that the selection or action will be carried out in the current table:


    =:
    select(table: $#ntn; field: 'field_name'; where: 'price' > 100)
    • $#ntn — this is the name of the current table, an abbreviation for (now table name).

    How do I specify in the select function to take data from the current field?

    The Name of the field can be obtained using $#nf (now field).


    =:
    clear(table: $#ntn; field: $#nf; where: 'id' = #id; log: true) // this is an example for action code