I just figured it out this morning. The answer you are looking for with Org-Collector is simple. Just put the table formulas in two empty lines at the beginning of the property view, and it will be calculated automatically when evaluating the property view (using Cc Cc ).
#+BEGIN: propview :scope tree :cols (ITEM CLOCKSUM EFFORT) :match "TODO=\"TODO\"" :noquote ALL #+TBLFM: @>$1=Totals::@>$2=vsum(@ I..@II );t::@>$3=vsum(@ I..@II );t #+END:
If you want to turn this into a generic yasnippet, you need to escape $ and \:
#+BEGIN: propview :scope tree :cols (ITEM CLOCKSUM EFFORT) :match "TODO=\\"TODO\\"" :noquote ALL
Now you can add a general view of the properties, which calculates the time and effort remaining for each step of the project, as well as the total time as a whole.
source share