Hello, Karl Voit <devn...@karl-voit.at> writes:
> * Karl Voit <devn...@karl-voit.at> wrote: >> Hi! >> >> I do have following situation: I'd like to multiply a float with hours >> which results in an error, obviously. However, I was not able to find >> out how to do it. >> >> Minimal example with expected product: >> >> | time [h:m:s] | value | h * value | >> |--------------+---------+-----------| >> | 09:15:00 | 2.54321 | 23.524693 | >> #+TBLFM: @2$3=$2*$1 > > I guess the last resort would be to do this would be with an elisp > function. > > Is there no other way? do you really need the result to be in decimal notation? If not, #+TBLFM:@2$3=$2*$1;T would work. If you need decimal notation you have to provide your own function, I think. Regards hmw