Variable: org-table-duration-custom-format

org-table-duration-custom-format is a customizable variable defined in org-table.el.gz.

Value

hours

Documentation

Format for the output of calc computations like $1+$2;t.

The default value is hours, and will output the results as a number of hours. Other allowed values are seconds, minutes and days, and the output will be a fraction of seconds, minutes or days. hh:mm selects to use hours and minutes, ignoring seconds. The U flag in a table formula will select this specific format for a single 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-duration-custom-format 'hours
  "Format for the output of calc computations like $1+$2;t.
The default value is `hours', and will output the results as a
number of hours.  Other allowed values are `seconds', `minutes' and
`days', and the output will be a fraction of seconds, minutes or
days.  `hh:mm' selects to use hours and minutes, ignoring seconds.
The `U' flag in a table formula will select this specific format for
a single formula."
  :group 'org-table-calculation
  :version "24.1"
  :type '(choice (symbol :tag "Seconds" 'seconds)
		 (symbol :tag "Minutes" 'minutes)
		 (symbol :tag "Hours  " 'hours)
		 (symbol :tag "Days   " 'days)
		 (symbol :tag "HH:MM  " 'hh:mm)))