emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Uwe Brauer <oub@mat.ucm.es>
To: emacs-orgmode@gnu.org
Subject: [how to joint column/rows of tables that are in different files (id?)] (was: how to best correct exams (code matlab) using org mode (and tables))
Date: Tue, 10 May 2022 09:14:51 +0200	[thread overview]
Message-ID: <87sfphrh90.fsf_-_@mat.ucm.es> (raw)
In-Reply-To: m2czgmakd3.fsf@andrew.cmu.edu


I think I almost have a working workflow.

What I need is a functionality to join either columns or rows of tables
that are in different files.

Here is what I have in mind for tables that are in the same file


** Columns

#+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

#+RESULTS:
| col1 | col2 | col3 |
|    1 |    2 |    3 |

** Rows
#+BEGIN_SRC emacs-lisp :var t1=T1 t2=T2
(append t1 t2)
#+END_SRC

#+RESULTS:
| col1 | col2 |
|    1 |    2 |
| col3 |      |
|    3 |      |



Now the 3rd package orgtbl-aggregate allows me to aggerate column of
tables that are in different files, via an ID generated via  org-id-get-create 
and saved via org-id-update-id-locations
as in 

#+BEGIN: aggregate :table "uwe"  :cols "Level" 
#+END:

Where the table uwe is located in a different file. However it seems
only to work for one table at the time, so if you have 20 tables in 20
files that a bit complicated

Any idea how to append column or rows from different table in different
files in one go?

Thanks

Uwe 



-- 
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military. 
I support the ban of Russia from SWIFT.
I support the EU membership of the Ukraine. 



  reply	other threads:[~2022-05-10  7:15 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-08 16:53 how to best correct exams (code matlab) using org mode (and tables) Uwe Brauer
2022-05-09 12:24 ` Ihor Radchenko
2022-05-09 12:39 ` John Kitchin
2022-05-10  7:14   ` Uwe Brauer [this message]
2022-05-10 15:56     ` [how to joint column/rows of tables that are in different files (id?)] (was: how to best correct exams (code matlab) using org mode (and tables)) John Kitchin
2022-05-11  6:32       ` [how to joint column/rows of tables that are in different files (id?)] Uwe Brauer
2022-05-11 13:45       ` Uwe Brauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87sfphrh90.fsf_-_@mat.ucm.es \
    --to=oub@mat.ucm.es \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).