From a previous post (Calculate time range in org-mode table), I was able to use the org-evaluate-time-range function in a table.
I'd like to sum the obtained durations. However, searching for how to do that, I noticed the following behavior of TBLFM mode.
| <2015-12-09 01:29>--<2015-12-09 08:43> | 7 hours 14 minutes | 98 hours minutes |
| <2015-12-09 08:29>--<2015-12-09 08:43> | 14 minutes | 14 minutes |
#+TBLFM: $2='(org-evaluate-time-range)::$3=$2
Here in the third column, it seems that it is the product that is calculated. Any reason for that?
What I would like to is to sum the duration with a macro like that
#+TBLFM: $2='(org-evaluate-time-range)::@3$2=vsum(@1$2..@2$2)
Thanks.