4

enter image description here

In org agenda clock table the file time is coming ** instead of sum of time in all task. How can I fix this?

Update: This issue has been fixed in the latest build or org-mode and emacs

1 Answers1

3

This is a bug AFAICS.

To fix it immediately you can fix function org-clocktable-write-default in your installation by replacing the line

(format (concat "| %s %s | %s%s"

with

(format (concat "| %s %s | %s%s%s"

Or you can wait for the next release of Org.

Marco Wahl
  • 694
  • 7
  • 14