Let's say I have two tasks with some duration in HH:MM format and value (points). I'd like to calculate the velocity (you can think of points as km and time in hours, you get km/h)
| task | time | points | velocity | |------+----------+--------+----------| | A | 0:45 | 2 | 2/0 | | B | 1:30 | 1 | 30 | | Sum | 02:15:00 | | #ERROR | #+TBLFM: @4$2=vsum(@2..@3);T::$4=$3/$2 I can easily sum the duration adding ;T at the end of the sum formula (@4$2=vsum(@2..@3);T). However, the division of a number (the points in column 3) by a time in HH:MM format ($4=$3/$2) doesn't work out of the box.
How can I do it?
$3is not defined, so$2/$3does not make sense. Did you mean to specify it somehow?$3/$2).