Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Org-mode -- Summing effort at multiple levels of hierarchy in column view

Tags:

org-mode

I have a tree of tasks in org-mode which has effort estimates at multiple levels within a subtree. In order words, a task may have sub-tasks with their own effort estimates, but the parent task also has an effort estimate which reflects work on the parent task that isn't included in any sub-task. I want to avoid sticking an "other" or "misc" subtask on each tree just to capture this sort of thing. The problem is that column view wipes out the effort property on the parent tasks as it percolates up the tree and replaces it with the sum of the child tasks. This seems like a terrible idea to me -- is there a way to prevent that, or must I push all effort estimates into leaf nodes exclusively?

like image 311
wonderclown Avatar asked Nov 04 '11 13:11

wonderclown


People also ask

What are org mode files?

Org Mode (also: org-mode; /ˈɔːrɡ moʊd/) is a document editing, formatting, and organizing mode, designed for notes, planning, and authoring within the free software text editor Emacs.

How do you make a table in Org mode?

The easiest way to create a table is to directly type the "|" character at the beginning of a line, or after any amount of white space. This will put you in the first field of an atomic table. Once you've finished editing this cell, you can jump to the next one by pressing TAB .

How do I use org Mode in Emacs?

To save the document, either press the save icon, or press C-x C-s, call it 1.org. Emacs does not actually understand you are editing an Org document, yet. To enable Org mode on your current document, type M-x org-mode which will enable the Org mode on the current document. Those are minuses, not underscores.


1 Answers

As org version 9.2.5 if in the COLUMNS declaration we include both %Effort and %Effort(Effort Children){:}~, the effort in the parent node doesn't get overridden when usingM-x org-columns`.

Example

#+COLUMNS: %50ITEM TODO %3PRIORITY %Effort %Effort(Effort Children){:} %10CLOCKSUM

like image 199
Dario Ceccoli Avatar answered Oct 13 '22 08:10

Dario Ceccoli