Sie suchen nach Remote-Tabellenreferenzen :
#+TBLNAME: tab1
| Nº | Description | Value |
|-----+-------------+-------|
| | TOTAL | 1 |
...
#+TBLNAME: tab10
| Nº | Description | Value |
|----+-------------+-------|
| | TOTAL | 2 |
tab-summary
| Description | Value |
|-------------------+-------|
| Total of Table 1 | 1 |
| Total of Table 10 | 2 |
|-------------------+-------|
| Grand Total | 3 |
#+TBLFM: @2$2=remote(tab1,@2$3)::@3$2=remote(tab10,@2$3)::@>$2=vsum(@I$2..@II$2)
Beachten Sie, dass diese Frage dort bereits eine Antwort hat: Verweisen auf benannte Tabellen oder Codeblöcke im Org-Modus
Sie können sogar tab-summary
automatisch generieren . Dies ist einfach, wenn Formeln direkt in Tabellenzellen geschrieben werden können. Im Folgenden ctrl-c-ctrl-c-hook
können Sie alle Tabellenformeln aus den Zellen installieren.
(defun org-table-install-formulas ()
"Install formulas in cells starting with = or := at the bottom of the table as #+TBLFM line.
Do nothing when point is not inside a table."
(interactive)
(when (org-table-p)
(save-excursion
(goto-char (org-table-begin))
(org-table-next-field)
(while (progn
(org-table-maybe-eval-formula)
(looking-at "[^|\n]*|\\([[:space:]]*\n[[:space:]]*|\\)?[^|\n]*\\(|\\)"))
(goto-char (match-beginning 2)))
))
nil)
(add-hook #'org-ctrl-c-ctrl-c-hook #'org-table-install-formulas)
Die automatische Generierung der Gesamtsummentabelle wird im folgenden Beispiel gezeigt:
#+TBLNAME: tab1
| Nº | Description | Value |
|-----+-------------+-------|
| | TOTAL | 1 |
...
#+TBLNAME: tab2
| Nº | Description | Value |
|----+-------------+-------|
| | TOTAL | 2 |
#+TBLNAME: tab3
| Nº | Description | Value |
|----+-------------+-------|
| | TOTAL | 3 |
#+BEGIN_SRC emacs-lisp :var basename="tbl" start=1 stop=3
(append
'(("Description" "Value")
hline)
(cl-loop for i from start upto stop
collect (list (format "Total of Table %d" i) (format ":=remote(tab%d,@>$3)" i)))
'(
hline
("Grand Total" ":=vsum(@I$2..@II$2)")))
#+END_SRC
#+RESULTS:
| Description | Value |
|------------------+---------------------|
| Total of Table 1 | :=remote(tab1,@>$3) |
| Total of Table 2 | :=remote(tab2,@>$3) |
| Total of Table 3 | :=remote(tab3,@>$3) |
|------------------+---------------------|
| Grand Total | :=vsum(@I$2..@II$2) |
Das Beispiel zeigt die Tabelle, wie sie sich aus der Ausführung des Emacs-Lisp-Quellblocks ergibt.
Wenn Sie den obigen org-ctrl-c-ctrl-c-hook
Platzpunkt in der Gesamtsummentabelle installiert haben und drücken, erhalten C-c C-cSie die folgende Tabelle:
| Description | Value |
|------------------+-------|
| Total of Table 1 | 1 |
| Total of Table 2 | 2 |
| Total of Table 3 | 3 |
|------------------+-------|
| Grand Total | 6 |
#+TBLFM: @2$2=remote(tab1,@>$3)::@3$2=remote(tab2,@>$3)::@4$2=remote(tab3,@>$3)::@5$2=vsum(@I$2..@II$2)
remote
) in einer Elisp-Formel tun?