⟵ 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
  • Calculating a value by code

    calculationofthevaluebycode

    Which code section in the field settings calculates the field value?

    Section code.

    How do I take the value of a field from the current table?

    Very simple — #name_field. Replace name_field with the name of the field you need. As soon as you type the hash symbol and start typing either the name or the field's title, it will suggest options for you.

    You can also get the name of a field by clicking on it — it will be copied to the clipboard. The same goes for the name of a table.

    How do I take a parameter calculated by another line?

    For this, $code_row_name is used. The row is denoted as code_row_name:

    For example, the code for calculating VAT from the total amount:


    =:
    #summ / $calc * #bid calc: 100 + #bid

    The code will start executing from =: and

    1. take the values of the fields summ and bid

    2. see the reference to the row calc

    3. calculate calc and substitute the resulting value into the formula

    4. finish the calculation and write the resulting value into the field

    How are lines of code named?

    The line of code is denoted as code_row_name:.

    If you double-click on it, all its usages in the code will be highlighted — all the places where it is called by $code_row_name.

    Which line of code is the starting one?

    For codes, it is always =:

    How do I put comments in the codes?

    Very simple — // comment text. For example:


    =:
    #summ / $calc * #bid // calculate the divisor depending on the bid calc: 100 + #bid

    Can the code be structured with indentation?

    Yes, using tab and space. We recommend using only tab.

    In what order are mathematical operations performed?

    In the one in which they are written. That is:

    =: $A + $B / $C
    
    A: 10
    B: 2
    C: 3
    
    

    When this code is executed, A will be added to B and then divided by C — the result will be 4.

    Can brackets be used without further reference to a mathematical operation?

    Brackets cannot be used just like that. The fact is that they denote functions, not mathematical operations.

    But there is such a possibility:

    =: math`($A + $B) / $C`
    
    A: 10
    B: 2
    C: 3
    
    

    When this code is executed, A will be added to B and then divided by C — the result will be 4.

    And if like this:

    =: math`$A + $B / $C`
    
    A: 10
    B: 2
    C: 3
    
    

    Then in the special math tag + highlighting with backticks, the operations will be performed as in mathematics. When this code is executed, B will be divided by C and then added to A — the result will be 10.6666666666.

    Are indents between code elements significant?

    No. Whether there are spaces or not does not matter. However, it is good practice to format code with spaces:

    = : #f_order_summ - $pay_summ
    
    pay_summ: listSum(list: $list)
    
    list: selectList(table: 'paylist'; field: 'summ'; where: 'order' = $#nci)