>>> "UB" == Uwe Brauer writes: > Hi > I know it is perfectly possible to have org-table-eval-formula for > columns, however sometimes I have tables with very many columns that are > difficult to read and even org-table-toggle-column-width does not help. > That is why I would like to transpose the table but then there seems no > equivalent of org-table-eval-formula for rows? > I can only perform such operation of a cell as in the following example > | result1 | result2 | > |---------+---------| > | 14 | 5 | > | 3 | 5 | > | 4 | 19 | > | 6 | 3 | > |---------+---------| > | 27 | | > #+TBLFM: @6$1=vsum(@I$1..@II$1) I did not think when I wrote this | result1 | result2 | result3 | |---------+---------+---------| | 14 | 5 | 1 | | 3 | 5 | 3 | | 4 | 19 | 4 | | 6 | 3 | 8 | |---------+---------+---------| | 27 | 32 | 16 | #+TBLFM: @6=vsum(@I..@II) Is the solution, of course