-
Can getCellValue grab a result calculated using columnSummary? (it appears not).
-
Can a cell formula be specified dynamically using e.g. cellFormula = “’=SUM(”.concat("A3 + B3 + ", anotherCellRef, “)’”); etc.?
-
Does setDataAtCell update on user input into the table?
Basically I am trying to get a table that does the following:
- Take user input first row.
- Apply correction factors second row.
- Sum and display result third row.
- Take third row results and apply custom function (logarithmic sum) and display in new cell.
I can get to step 3, but struggling with step 4. I need the whole thing to update dynamically on user input to first row.
Can anyone tell me the right way to do this?