⟵ 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 do comparisons work in codes?

    Where are comparisons used?

    For example, in the parameters where and condition.

    What comparison can it be?

    • = — equal or intersection.

    • != — not equal or no intersection. Typed as ! + =.

    • > — greater than.

    • < — less than.

    • >= — greater than or equal to. Typed as > + =.

    • <= — less than or equal to. Typed as < + =.

    • == — completely equal for lists, associative arrays, and lists of associative arrays. Typed as = + =.

    • !== — completely not equal for lists, associative arrays, and lists of associative arrays. Typed as ! + = + =.

    Is it possible to compare a number to a string?

    Yes. They will be compared as numbers if the number represented as a string contains only digits without spaces, and . is used as the decimal separator.

    How does comparing a single value to a list work?

    true will be returned if there is at least one such element in the list.

    How does comparing a list to a list work?

    Comparison using = works by intersection. If the lists have at least one common element, it returns true.

    How does negative comparison work for lists?

    true is returned — there is not a single element from the first list in the second list.

    Is the order of the elements important in a simple comparison?

    No. If lists are compared using = then:


    =:
    if(condition: $list1 = $list2; then: true; else: false) list1: listCreate(item: 1; item: 2; item: 3) list2: listCreate(item: 3; item: 1; item: 2) // Result true

    Do more and less comparisons work for lists?

    No — relative comparisons greater, less and others do not work for lists.

    How do I make a full comparison?

    Full comparison is a double equal ==.

    Full comparison will return true if the compared values are completely identical, taking into account the order of elements.

    For row, the order of keys does not matter.

    What is an empty value?

    This is the absence of any symbols, numbers, letters, or special characters.

    In Totum, it is denoted by two consecutive double quotes — "".

    Is zero equal to an empty value?

    No. 0 and "" are not equal elements.

    Does an empty list equal an empty value?

    Yes — "" equals $#lc.

    What is returned by comparing a List with an empty value inside with an empty value?

    "" is equal to a list with an empty value ["",2,"A"] because it is an intersection.

    How do I check if what I' m given is an empty list?

    To ensure that we have a list without a single element, we need to compare with $#lc:


    =:
    if(condition: $value = $#lc; then: true; else: false) value: json`[]` // Result true