emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Column view capture specific parts only


From: Johnny
Subject: Re: [O] Column view capture specific parts only
Date: Fri, 14 Oct 2011 19:02:30 +0100
User-agent: Gnus/5.110018 (No Gnus v0.18) Emacs/23.2 (gnu/linux)

Giovanni Ridolfi <address@hidden> writes:

> Johnny <address@hidden> writes:
>
>> I have a nice outline set up in column view and would like to capture
>> different versions of this into org-tables. 
>
> A case-study org file would have helped here. :-(

Sorry, my bad. I attach an example file below, based on your ideas, and
put a subheading with the desired result below the actual result. Hope
this clarifies a bit. :) 

* Outline structure
  :PROPERTIES:
  :COLUMNS:  %20ITEM %lead %review %approve
  :ID:       e48fa5a5-864b-46cd-a578-b88fe5f570be
  :END:

** Topic A
*** Subtopic 1
    :PROPERTIES:
    :lead:     john
    :review:   jane
    :approve: jake
    :END:
    
** Topic B
*** Subtopic 2
    :PROPERTIES:
    :approve: jim
    :lead:     kim
    :review:   tim
    :END:

* Capture outline structure

** Only lead showing
   :PROPERTIES:
   :COLUMNS:  %15ITEM %lead
   :END:
   #+BEGIN: columnview :hlines 1 :id e48fa5a5-864b-46cd-a578-b88fe5f570be
   | ITEM                | lead | review | approve |
   |---------------------+------+--------+---------|
   | * Outline structure |      |        |         |
   | ** Topic A          |      |        |         |
   | *** Subtopic 1      | john | jane   | jake    |
   | ** Topic B          |      |        |         |
   | *** Subtopic 2      | kim  | tim    | jim     |
   #+END

*** Desired result
   | ITEM                | lead |
   |---------------------+------|
   | * Outline structure |      |
   | ** Topic A          |      |
   | *** Subtopic 1      | john |
   | ** Topic B          |      |
   | *** Subtopic 2      | kim  |

** Only review showing
   :PROPERTIES:
   :COLUMNS:  %15ITEM %review
   :END:
   #+BEGIN: columnview :hlines 1 :id e48fa5a5-864b-46cd-a578-b88fe5f570be
   | ITEM                | lead | review | approve |
   |---------------------+------+--------+---------|
   | * Outline structure |      |        |         |
   | ** Topic A          |      |        |         |
   | *** Subtopic 1      | john | jane   | jake    |
   | ** Topic B          |      |        |         |
   | *** Subtopic 2      | kim  | tim    | jim     |
   #+END

*** Desired result
   | ITEM                | review |
   |---------------------+--------|
   | * Outline structure |        |
   | ** Topic A          |        |
   | *** Subtopic 1      | jane   |
   | ** Topic B          |        |
   | *** Subtopic 2      | tim    |

** Only approve showing
   :PROPERTIES:
   :COLUMNS:  %15ITEM %approve
   :END:
   #+BEGIN: columnview :hlines 1 :id e48fa5a5-864b-46cd-a578-b88fe5f570be
   | ITEM                | lead | review | approve |
   |---------------------+------+--------+---------|
   | * Outline structure |      |        |         |
   | ** Topic A          |      |        |         |
   | *** Subtopic 1      | john | jane   | jake    |
   | ** Topic B          |      |        |         |
   | *** Subtopic 2      | kim  | tim    | jim     |
   #+END

*** Desired result
   | ITEM                | approve |
   |---------------------+---------|
   | * Outline structure |         |
   | ** Topic A          |         |
   | *** Subtopic 1      | jake    |
   | ** Topic B          |         |
   | *** Subtopic 2      | jim     |

-- 
Johnny

reply via email to

[Prev in Thread] Current Thread [Next in Thread]