I really want to be able to log work with comment on each item, e.g:
#+BEGIN: clocktable :maxlevel 3 :emphasize nil :scope file :block thisweek :properties ("COMMENT")
#+CAPTION: Clock summary at [2018-12-06 Thu 15:16], for week 2018-W49.
| Headline | Time | | COMMENT |
+----------------------------------+--------+------|-----------|
| *Total time* | *0:15* | | |
+----------------------------------+--------+------|-----------|
| task list | 0:15 | | |
| \_ First task | | 0:06 | comment 1 |
| \_ Second task | | 0:09 | comment 2 |
#+END: clocktable
* task list
** First task
:PROPERTIES:
:COMMENT: comment 1
:LOGBOOK:
CLOCK: [2018-12-06 Thu 13:35]--[2018-12-06 Thu 13:41] => 0:06
:END:
** Second task
:PROPERTIES:
:COMMENT: comment 2
:LOGBOOK:
CLOCK: [2018-12-06 Thu 13:41]--[2018-12-06 Thu 13:50] => 0:09
:END:
When I use the :properties ("COMMENT")
the comment column in the clock table is created, but it does not get the comments I write under each task. Also, the comment column is actually created as the first column, whereas I would like it as the last one. I cannot seem to figure out how to solve this.
How can this be done?