In the following table I am trying to implement a row formula for each cell to be a multiple of the corresponding cell in a preceding row, but several variations I tried do not work: | A | 2 | 3 | 4 | | B | [4, 6, 8] | [4, 6, 8] | [4, 6, 8] | | C | [4, 6, 8] | [4, 6, 8] | [4, 6, 8] | | 2 A | 4 | 6 | 8 | #+TBLFM: @2$2..@2$4=2*@1$2..@1$4::@3$2..@3$4=2*(@1$2..@1$4) What I would like to get, without having to repeat the formula for each cell in the row is: |B|4|6|8| It seems that this should be fairly simple to do. I am using the latest git version of orgmode with emacs 24.0.50 Thanks for any suggestions.