Function: org-table-recalculate-buffer-tables

org-table-recalculate-buffer-tables is an autoloaded, interactive and byte-compiled function defined in org-table.el.gz.

Signature

(org-table-recalculate-buffer-tables)

Documentation

Recalculate all tables in the current buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;;###autoload
(defun org-table-recalculate-buffer-tables ()
  "Recalculate all tables in the current buffer."
  (interactive)
  (org-with-wide-buffer
   (org-table-map-tables
    (lambda ()
      ;; Reason for separate `org-table-align': When repeating
      ;; (org-table-recalculate t) `org-table-may-need-update' gets in
      ;; the way.
      (org-table-recalculate t t)
      (org-table-align))
    t)))