In Emacs' Org-mode how do I make a clock table that shows all items that has an Effort estimate not just those that has clocked?
Thanks in advance.
In Emacs' Org-mode how do I make a clock table that shows all items that has an Effort estimate not just those that has clocked?
Thanks in advance.
On
You can use :properties (more info here).
So, it will be something like that:
#+BEGIN: clocktable :scope file :maxlevel 2 :properties ("Effort")
#+END:
You'll notice that "Effort" will appear as the first column on the clock table. If that's a problem, you can use the solution described here (using :formatter as well)
Even though not exactly what you want I found this solution in a mailing list:
It uses column view in a block that has a column for Effort, Clocked and State. The ID is used to define the subtree, that the column view should capture. You can also specify
globalor what suits you best.