On Thu, Dec 2, 2010 at 11:29, Antony <lisp.li...@gmail.com> wrote: > I have table like > > | foo | amount | > |-----------+--------| > | | <5> | > | hello | 100 | > | again | 200 | > | once more | 300 | > | | | > | | | > > I need to be able sum those numbers and say 600 somewhere (I am ok if it > does in the same table or outside of it) > > When I add a new row, say > > | foo | amount | > |-----------+--------| > | | <5> | > | hello | 100 | > | again | 200 | > | once more | 300 | > | qqq | 100 | > | | | > > Now I need to be able to change the 600 to 700 (by pressing C-c C-c > somewhere) > > I am finding it hard to figure out how to do this.
Press C-c C-c on the TBLFM line after every change: | foo | amount | |-----------+--------| | hello | 100 | | again | 200 | | once more | 300 | |-----------+--------| | | 600 | #+TBLFM: $LR2 = vsum(@i$...@-1$2) I don't think `<5>' is of any use in this case. Michael _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode