emacs - How to fill right in org-mode? -


perhaps missed in documentation can point me in direction of how fill right series of columns in emacs's org-mode? believe saw how fill down not recall seeing how fill right.

edit: example, looking way take:

| 8 | 6 | 7 | 5 | 3 | 0 | 9 |

| :=@1$1*2 | | | | | | |

and turn into:

| 8 | 6 | 7 | 5 | 3 | 0 | 9 |

| :=@1$1*2 | :=@1$2*2 | :=@1$3*2 | :=@1$4*2 | :=@1$5*2 | :=@1$6*2 | :=@1$7*2 |

which evaluates to:

| 16 | 12 | 14 | 10 | 6 | 0 | 18 |

starting state:

| 8 | 6 | 7 | 5 | 3 | 0 | 9 | |   |   |   |   |   |   |   | #+tblfm: @2=@1*2 

you state:

|  8 |  6 |  7 |  5 | 3 | 0 |  9 | | 16 | 12 | 14 | 10 | 6 | 0 | 18 | #+tblfm: @2=@1*2 

by pressing c-c c-c while on line tblfm.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -