⟵ 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
  • Using the functions

    table_recalc

    How do I call a function?

    Start typing in the code field after =: the name of the function. For example, round. You will be offered autocomplete — press enter and then put an opening or closing parenthesis.

    = : round(num: ; type: "up|down|math"; step: 0.5; dectimal: 1)
    

    The appearance of functions in Totum is the name before the parentheses, and inside the parentheses are the parameters. Let's complete it:

    = : round(num: $number; type: "up"; step: 0.5; dectimal: 1)
    
    number: 0.3
    
    // The result will be — 0.5.
    

    Can I leave function parameters unfilled?

    No, you can't! All unnecessary parameters must be removed.

    How do I highlight the next function parameter?

    Parameters are separated by ;. If the cursor is positioned before the closing parameter ;, pressing Shift + Tab will select the next function parameter.

    If you press Tab, only the value of the next parameter will be selected.

    How to highlight the current function parameter?

    Place the cursor between any characters of the parameter and press Shift + Tab.

    How to add a parameter to a function?

    Start typing the parameter name after one of the closing ;.

    How do I call up a list of all parameters?

    If you place an additional ; between the closing parameter ; and the beginning of the next parameter, Totum will offer you a list of parameters — you can choose the one you need.

    How do I quickly fill a function with just the necessary parameters?

    Type the function name and replace ( with /, select the parameter and again replace / with /. When you have selected the necessary ones, then put (.

    It is considered good practice to use parameters in the order they are listed in the autocomplete and documentation.

    You can always view the autocomplete for the function by right-clicking on it – there is also a quick jump to the documentation for this function.

    Can a function be called inside another function?

    No — this is done through a separate line:


    example2:
    select(table: 'tablename'; field: 'fieldname1'; where: 'price' = $what_id) what_id: round(num: #price; type: "up"; step: 1; dectimal: 0)