
Hi, I have 2 questions about calculating in sheet-worker ! 1. I have an input that auto-calc a lot of number. Is it possible to get the input value in sheet worker? (like formula = 1 + 3, so I want to get "4" as value. I only get the formula itself). 2. If not, how can I get the sum of every number (that is store in the same number of input (let's say 10 inputs)) ? I tried the example in the wiki with the var.forEach() loop but it only get the value of each field and set it. In this case, what I want is that we get the values of every field, add it to a variable and set the final variable to input. Exemple const = ["for", "dex", "int", "agi", "const"] total = 0 on change:for ... change:const get every values from for, dex, int, agi, const total = sum of for, dex, int, agi, const set total to an input (outside the loop)