On Thu, Jul 24, 2008 at 2:55 AM, Parker, Matthew wrote:
  > Hi,
  >
  > I've read through the manual and maybe missed it but how does one
  >
  > produce an agenda that filters on both a certain todo keyword and a certain
  > tag?
  >
  > Here's the scenario:
  >
  > 1. Given a file setup w/ these TODO sequence keywords and tags
  >
  > #+SEQ_TODO:      TODO WAITING DONE
  >
  > #+TAGS:          Home(h) Work(w) Errands(e) Phone(p) Computer(c)
  >
  >
  >
  > 2. And given these headings
  >
  > * TODO      xxx            :Work:
  >
  > * WAITING   just this one! :Work:
  >
  > * DONE      yyy            :Work:
  >
  > *           zzz            :Work:
  >
  >
  >
  > 3. And given the fact that
  >
  > C-c a t              gives list of all TODO, WAITING, and DONEs
  >
  > C-c a T & "WAITING"  gives list of just WAITING items
  >
  > C-c a m & "work"     gives list of all headings tagged w/ "work", TODO or
  > otherwise
  >
  > C-c a M & "work"     gives list of all TODO entries w/ "work" tag
  >
  >
  >
  > How can I produce a list of "WAITING" todo items tagged w/ "work", i.e.
  >
  > 1. A certain type of todo keyword, e.g. WAITING
  >
  > 2. A certain tag?, e.g. "work"

Does this help?

(setq org-agenda-custom-commands
      (quote (("E" "Errands To Run" tags-todo #("work!/WAITING") nil))))

-- Manish


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to