⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • 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
  • How do comparisons work in codes?
  • How do I check if one list contains another?
  • How to turn off where by the conditions
  • The insert line has no id
  • How to create lists fast
  • How do I take a row from a table and then get data from it?
  • What are associated array lists?
  • Specifying a field name by code, specifying a line of code by code?
  • A list of lists and turning it into a list
  • How do I sequentially go through the list and complete it or overwrite the values?
  • How do I filter and sort a list or a list of associated arrays?
  • Getting information about manual values, tree level, selects
  • How do while and var work? Replacing with listReplace
  • How to optimize the execution of the same code with variables passed to it?
  • How to use cond for condition?
  • How do I use the value of the previous row to calculate the current one?
  • Why do I need a column-by-column recalculation in the calculated and temporal tables?
  • How do I use the previous value in codes and combine manual input and code?
  • Row and rowList operations
  • 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
  • How to use cond for condition?

    How do the conditions work and how can they be optimized to improve performance?

    condition in all functions where they are present are executed from left to right. The next one is executed only if the previous one evaluated to true.

    Therefore, condition should be arranged in ascending order of the expected load.

    How to use comparisons to optimize the calculation load?

    If you have a large code that consumes a lot of resources, you can check whether the necessary inputs for it have changed by using the previous value.

    For example, we concatenated all the tracked fields using listCreate into a technical field control_field and check if it has changed using the previous value of the field:


    =:
    if(condition: #old.control_field == #control_field; then: $#onfv; else: $calc) calc: "..."

    If it hasn't changed, we do not compute calc, but take the previous value of the current field.

    What does Cond always return?

    There is a sugar cond — it always returns the result of the comparison inside itself — true or false.

    In cond, conditions and, or, and groupings () are possible:

    • && — and.

    • || — or.

    Cond can be used inside functions, and inside condition you can avoid unnecessary comparisons:

    =: if(condition: cond`$line_1 != 0 || $line_2 != 0`; then: 100; else: 0)
    
    line_1: 10
    line_2: 0
    
    // Result = 100
    
    

    In words, this example states: if line_1 is not equal to 0 or line_2 is not equal to 0, then 100, otherwise 0.

    Is it possible to use cond inside condition without additionally specifying = true/false?

    Yes. condition accepts true or false in addition to comparisons:

    =: if(condition: $cond; then: 100; else: 0)
    
    cond: if(condition: $line_1 != 0; then: true; else: false)
    
        line_1: 10
    
    // Result = 100
    
    

    How do I write the condition and?

    • && — and.

    How to write a condition or?

    • || — or.

    What are the brackets inside cond used for?

    For grouping conditions:

    cond: cond`($A=1 && $B=1) || ($A=2 && $B=2)`
    
    // Means: A and B are equal to 1 or A and B are equal to 2
    
    

    At what point does cond end?

    When all conditions at the same level are met as true:

    cond: cond`($A=1 && $B=1) || ($A=2 && $B=2)`
    
    // Here the execution will end if A=1 and B=1, there will be no repeated reference to A and B