Variable: org-table-formula-field-format

org-table-formula-field-format is a customizable variable defined in org-table.el.gz.

Value

"%s"

Documentation

Format for fields which contain the result of a formula.

For example, using "~%s~" will display the result within tilde characters. Beware that modifying the display can prevent the field from being used in another formula.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-table-formula-field-format "%s"
  "Format for fields which contain the result of a formula.
For example, using \"~%s~\" will display the result within tilde
characters.  Beware that modifying the display can prevent the
field from being used in another formula."
  :group 'org-table-settings
  :version "24.1"
  :type 'string)