Variable: org-table-use-standard-references

org-table-use-standard-references is a customizable variable defined in org-table.el.gz.

Value

from

Documentation

Non-nil means using table references like B3 instead of @3$2.

Possible values are:
nil never use them
from accept as input, do not present for editing
t accept as input and present for editing

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-table-use-standard-references 'from
  "Non-nil means using table references like B3 instead of @3$2.
Possible values are:
nil     never use them
from    accept as input, do not present for editing
t       accept as input and present for editing"
  :group 'org-table-calculation
  :type '(choice
	  (const :tag "Never, don't even check user input for them" nil)
	  (const :tag "Always, both as user input, and when editing" t)
	  (const :tag "Convert user input, don't offer during editing" from)))