⟵ 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 I use the previous value in codes and combine manual input and code?

    How to refer to the previous value of the field?

    Do not confuse with the value of the previous line!

    The previous value of the field can be obtained through the quick variable $#onfv (old now field value) and through the prefix old when referring to the field value — #old.field_name.

    Is it possible to refer to the previous value of the field from the code?

    Yes, in codes you can also get the previous value of a field. Where else — in action codes.

    An example how you can leave the value of a field unchanged by the conditions

    Task. Under certain conditions, leave the field value unchanged, but if the conditions are not met — calculate:


    =:
    if(condition: #type = 1; then: $#onfv; else: $calc) calc: #value_1 * #value_2

    Example, changing the value of the checkbox field to the opposite when recalculating

    = : if(condition: $#onfv = true; then: false; else: true)
    
    

    For example, to track any changes in the row. Changing any field will lead to the recalculation of the row, and the recalculation of the row will lead to the change of the checkbox.

    Thus, you can attach an action code that tracks any changes.

    How do manually enter values in the field calculated by the code and avoid fixing the value?

    Quite often, a field calculated by code based on another field can be changed, and this change should lead to a change in the main field and should not result in fixing the current value:

    For example, the code:

    =: select(table: 'table'; field: 'field'; where: 'id' = #num)
    

    The action code for changing this field:

    =: set(table: 'table'; field: 'field' = $#nfv; where: 'id' = #num)
    

    But this leads to pin of the current field and the appearance of the hand icon.

    The hand icon can be hidden purely cosmetically in the formatting:

    f1=: setFormat(showhand: false)
    

    But this will not unpin the value in the field. To make it work correctly, you need to perform a clear as the second action:

    a1=: set(table: 'table'; field: 'field' = $#nfv; where: 'id' = #num)
    
    a2=: clear(table: $#ntn; field: $#nf; where: 'id' = #id)
    
    // Don't forget to specify where by the current id
    

    How do I remove the manual value display?

    The hand can be hidden exclusively cosmetically in formatting:


    f1=:
    setFormat(showhand: false)