Variable: org-columns-modify-value-for-display-function
org-columns-modify-value-for-display-function is a customizable
variable defined in org-colview.el.gz.
Value
nil
Documentation
Function that modifies values for display in column view.
For example, it can be used to cut out a certain part from a time stamp. The function must take 2 arguments:
column-title The title of the column (*not* the property name)
value The value that should be modified.
The function should return the value that should be displayed, or nil if the normal value should be used.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defcustom org-columns-modify-value-for-display-function nil
"Function that modifies values for display in column view.
For example, it can be used to cut out a certain part from a time stamp.
The function must take 2 arguments:
column-title The title of the column (*not* the property name)
value The value that should be modified.
The function should return the value that should be displayed,
or nil if the normal value should be used."
:group 'org-properties
:type '(choice (const nil) (function)))