⟵ 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 value of the previous row to calculate the current one?

    Example with sequential numbering

    Totum has a unique row sorting sequence — id, but sometimes additional sorting is needed, for example, if the table includes not only adding but also deleting rows or if there are restarts/cancellations of transactions.

    id values are not reused, so gaps appear.

    This is most often needed in calculation tables within a cycle — for example, to pass sequential numbers to accounting or for printing receipts.

    We create a number field and write Code in it that will calculate the number:

    = : if(condition: $sel = ""; then: 1; else: $calc)
    
        ~sel: select(table: $#ntn; field: $#nf; where: 'id' < $id; order: 'id' desc)
            id: if(condition: #id = ""; then: "*ALL*"; else: #id)
    
    calc: $sel + 1
    
    

    In this example, we check for the existence of the previous number and also check id for add row. If it is an add row, we take the last row by id in the table; if not, we take the first row with an id less than the current one.

    n-sorting example

    If the parameter sort by order field is enabled, then the same needs to be done by n instead of id:

    = : if(condition: $sel = ""; then: 1; else: $calc)
    
        ~sel: select(table: $#ntn; field: $#nf; where: 'n' < $n; order: 'n' desc)
            n: if(condition: #n = ""; then: "*ALL*"; else: #n)
    
    calc: $sel + 1