>>> "UB" == Uwe Brauer writes: > Best solution found in > https://emacs.stackexchange.com/questions/48508/merge-org-tables > ** Solution 1 > #+NAME: T1 > | col1 | col2 | > | 1 | 2 | > #+NAME: T2 > | col3 | > | 3 | > #+BEGIN_SRC emacs-lisp :var t1=T1 t2=T2 > (cl-mapcar #'append t1 t2) > #+END_SRC This only joins columns. I want to join rows, I presume I should replace cl-mapcar by something else. Any suggestions? Thanks Uwe Brauer