Running Org version 8.3.4 (emacs 24.5.1) The following example shows how renaming the ITEM column in column view causes the parent heading to show up. Anyone know how to fix this?
** Bad Summary #+BEGIN: columnview :skip-empty-rows t :id "bad" | Name | Nick | |------------------------+------| | ** Contact Information | | | *** John Doe | Jon | #+END ** Contact Information :PROPERTIES: :ID: bad :COLUMNS: %20ITEM(Name) %Nick :END: *** John Doe :PROPERTIES: :Nick: Jon :END: ** Good Summary #+BEGIN: columnview :skip-empty-rows t :id "good" | ITEM | Nick | |--------------+------| | *** John Doe | Jon | #+END ** Contact Information :PROPERTIES: :ID: good :COLUMNS: %20ITEM %Nick :END: *** John Doe :PROPERTIES: :Nick: Jon :END: Thanks for any help! David