>>> "RM" == Roger Mason writes: > Hello Uwe, > Uwe Brauer writes: >> I obtain 0.0 in the last column, this looks bad, any idea how to avoid >> it? > I think you can use a printf format specification in the formula. Thanks I tried #+begin_src elisp | | | | | Res | Min | |-----+----+---+---+------+-----| | 0 | 0 | 0 | 0 | 0 | 0.0 | | 1.2 | 10 | 1 | 1 | 13.2 | 0.1 | #+TBLFM: $5=vsum($1..$4);f1::$6=min(10,$4)*0.1;f1 E #+end_src #+begin_src elisp | | | | | Res | Min | |-----+----+---+---+------+-----| | 0 | 0 | 0 | 0 | 0 | 0.0 | | 1.2 | 10 | 1 | 1 | 13.2 | 0.1 | #+TBLFM: $5=vsum($1..$4);f1::$6=min(10,$4)*0.1;%0.1f #+end_src But it does not change, it seems if I want 0.1 I have to pay the price to also obtain 0.0. Regards Uwe