Does the pro formulas plugin calculate recursively like a spreadsheet?
http://jsfiddle.net/ceturc/q2szo45r/4/
When I try to use the pro formulas plugin (v1.10.1) and refer to another cell (that refers to a later cell in my data table), I receive #VALUE error or the literal formula (rather than the computed value). If I refer to an earlier field, it works fine.
The follow row:
[1,’=C1+1’,’=A1+1’,’=C1+1’]
Renders as:
1 #VALUE! 2 3
Expected output:
1 3 2 3
Thanks for any help you can offer.
Chuck