⟵ 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 math for mathematical operations

    using_math_for_math

    Which syntactic construction allows for a mathematical order of computation?

    By default, mathematical operations in Totum are performed in the order they are written, but if you need to make a mathematical expression, then:


    =:
    math`$A / ($B + $C)` A: 10 B: 4 C: 6 // Result: 1

    How are brackets handled in math?

    As in mathematical notation, operations within parentheses are performed first, followed by operations outside the parentheses in the mathematical order: exponents, multiplication and division, addition and subtraction.

    Is it possible to use math to reference other lines of code?

    Yes, any references allowed in Totum-code:

    • $ — a line of code.

    • # — a cell value.

    • $# — a variable within the code.

    • #$ — a cell value defined by the code.

    • $$ — calls a line of code defined by another code. An elegant way of branching!

    • @ — reference to non-string fields in other tables.

    Can math be used directly in a function?

    Yes.


    =:
    if(condition: math`$A4 + $B4 / 2` = 15; then: true; else: false) A4: 10 B4: 10 // Result: true