Variable: org-table-copy-increment
org-table-copy-increment is a customizable variable defined in
org-table.el.gz.
Value
t
Documentation
Non-nil means increment when copying current field with M-x org-table-copy-down (org-table-copy-down).
This variable was added, or its default value changed, in Org version
8.3.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-table-copy-increment t
"Non-nil means increment when copying current field with \
`\\[org-table-copy-down]'."
:group 'org-table-calculation
:version "26.1"
:package-version '(Org . "8.3")
:type '(choice
(const :tag "Use the difference between the current and the above fields" t)
(integer :tag "Use a number" 1)
(const :tag "Don't increment the value when copying a field" nil)))