org mode - Merge orgmode tables vertically -
is possible append table below another? looking this in following form:
#+name: tbl1 | | 1 | | b | 2 | #+name: tbl2 | c | 3 | | d | 4 |
i expecting this:
| | 1 | | b | 2 | | c | 3 | | d | 4 |
from search found lob-tables-operations seems me it's not documented , not under maintenance.
it quite straight forward based on this example. used of mapcan
instead of mapcar
** append tables :properties: :date: 2015-06-19 :end: #+name: table-names - first-table - second-table - third-table #+name: first-table | | 1 | | b | 2 | |---+---| #+name: second-table | c | 3 | | d | 4 | |---+---| #+name: third-table | f | 5 | | g | 6 | |---+---| #+begin_src emacs-lisp :var table-names=table-names (mapcan #'org-babel-ref-resolve table-names) #+end_src #+results: | | 1 | | b | 2 | |---+---| | c | 3 | | d | 4 | |---+---| | f | 5 | | g | 6 | |---+---|
Comments
Post a Comment