⟵ 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 while and var work? Replacing with listReplace

    How does var work?

    var — this is a function for getting the value of a variable, assigning a value to a variable, and creating a variable with a default value.

    Return value — always when calling var.

    To assign a value to a variable — you need to pass the new value in the value parameter:


    =:
    var(name: "count"; value: $#lc) // Assigned an empty list to count // Since the return value always occurs when calling var, the result of this code will be an empty list

    To get the value of a variable in the code using a quick variable:


    =:
    $#count

    But if such a variable has not been defined previously — there has been no action recording a value to it, then such code will complain about a non-existent variable!

    To prevent this, use the default parameter:


    =:
    var(name: "count"; default: $#lc) // The code will try to get the value of count, see that the variable does not exist, and return the default value

    Within what scope does a variable defined in var work?

    The variable is only accessible in the current code during the evaluation of a specific cell.

    Tell us more about while

    while can also be executed in codes, returning the last action as the result.

    The full form of while is as follows:


    =:
    while(preaction: ; condition: ; limit: ; action: ; postaction: ; iterator: )
    • preaction – actions that are executed once before all conditions and subsequent actions.

    • condition — conditions.

    • limit — the limit of operations to be performed — we will explain this in more detail now.

    • action — actions that are executed in a loop while condition evaluates to true.

    • postaction — actions that are executed once when condition evaluates to false or the limit is reached. But only if at least one action was executed.

    • iterator — the name of the variable to which the iteration number is assigned. The numbers start from 0.

    In general, it is more efficient to use listReplace in totum for iterating over lists. Let's consider the following example:


    =:
    while(preaction: $zero; limit: 30; action: $set; iterator: "iter") zero: var(name: "count"; value: $#lc) set: var(name: "count"; value: $plus) plus: listAdd(list: $#count; item: $i) i: dateAdd(date: $#nd; days: $days) days: $#iter * -1

    Here we calculate a list of dates from the current date going back 30 days.

    How it works: while starts executing and sees preaction, which needs to be executed before all conditions and actions.

    In this preaction, we create a variable with an empty list.

    Next, there is a limit equal to 30 — meaning we need to repeat the action 30 times. The iteration number will be assigned to the variable "iter" — as specified in the iterator parameter.

    The action starts executing, it calls the variable count for writing and records in it the updated list from the list that it already contained and the new date.

    The date is calculated by the method — the current date minus the number of days according to the iteration number. On the first cycle, minus 0 days, on the second minus 1 day, and so on for 30 times.

    When the limit is reached, the function will return the last executed action — this will be a list of 30 date values.

    Let's supplement this example with a condition – stop if we reach the first day of the month when counting back:


    =:
    while(preaction: $zero; condition: $dateformat != 1; limit: 30; action: $set; iterator: "iter") zero: var(name: "count"; value: $#lc) dateformat: dateFormat(date: $i; format: "j") // j — this is the day of the month without a leading 0 set: var(name: "count"; value: $plus) plus: listAdd(list: $#count; item: $i) i: dateAdd(date: $#nd; days: $days) days: $#iter * -1

    while will execute iteration after iteration until the limit is reached or until the condition evaluates to false. As soon as the date being added to the list has a day equal to 1, the loop will stop.

    Note that the first day of the month will not be included in the final result. To include it, we need to complicate the conditions in condition:


    =:
    while(preaction: $zero; condition: $dateformat != $lastday; limit: 30; action: $set; iterator: "iter") zero: var(name: "count"; value: $#lc) dateformat: dateFormat(date: $i; format: "j") ~lastdaynumber: dateFormat(date: $lastday; format: "j") lastday: dateAdd(date: $firstday; days: -1) firstday: dateFormat(date: $#nd; format: "Y-m-01") // j — this is the day of the month without a leading 0 set: var(name: "count"; value: $plus) plus: listAdd(list: $#count; item: $i) i: dateAdd(date: $#nd; days: $days) days: $#iter * -1

    We get the number of the last day of the previous month by adding minus 1 day to the first day of the current month. And since we need to do this only once — we fix it with ~.

    If you place the tilde anywhere else in this code (except zero) — it will break!

    What value does while return in the codes?

    The value of the last action or postaction, if they exist.

    Why is it better that everything that can be done through listReplace should be done through listReplace?

    listReplace is significantly easier to read in the related code.

    What listReplace cannot do is stop based on a condition; it will always go to the end of the list.