Uwe Brauer writes: > * Everything [3/4] > ... > *** DONE Books > ... > ** DONE Car > ... > ** DONE Food > ... > *** WAIT Computer > ... > ... The expected behavior should be > > #+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr) %5Comp1(Comp1){X/} %5Comp2(Comp2){X/}" > | Status | Nr | Comp1 | Comp2 | > |--------+----+-------+-------| > | | | [1/2] | [2/2] | > | DONE | 2 | [X] | [X] | > | DONE | 3 | [ ] | [X] | > #+END: I am not sure if it is expected. Why doesn't "DONE Books" contribute to the summary? It is also under "Everything" headline and has a checkbox. With the attached patch, the result would be the following: #+BEGIN: columnview :maxlevel 2 :skip-empty-rows t :hlines 1 :indent nil :format "%5TODO(Status) %5Nr(Nr)%5Comp1(Comp1){X/} %5Comp2(Comp2){X/}" | Status | Nr | Comp1 | Comp2 | |--------+----+-------+-------| | | | [3/3] | [2/3] | | DONE | 2 | [X] | [X] | | DONE | 3 | [1/1] | [0/1] | #+END: