From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: tags-tree question Date: Sun, 02 Nov 2008 20:51:43 -0500 Message-ID: <874p2p4lw0.fsf@gollum.intra.norang.ca> References: <7171.1225288853@localhost> <30084876-7A14-42DA-93C6-B434BE43162F@uva.nl> <10913.1225668040@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kwobe-00010s-4M for emacs-orgmode@gnu.org; Sun, 02 Nov 2008 20:51:50 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kwobc-00010g-IX for emacs-orgmode@gnu.org; Sun, 02 Nov 2008 20:51:48 -0500 Received: from [199.232.76.173] (port=39381 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kwobc-00010d-C2 for emacs-orgmode@gnu.org; Sun, 02 Nov 2008 20:51:48 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]:63552) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Kwobc-0004lD-1M for emacs-orgmode@gnu.org; Sun, 02 Nov 2008 20:51:48 -0500 In-Reply-To: <10913.1225668040@localhost> (Pete Phillips's message of "Sun\, 02 Nov 2008 23\:20\:40 +0000") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Pete Phillips Cc: emacs-orgmode@gnu.org, Carsten Dominik Pete Phillips writes: > On a related question, is it possible to set up an > org-agenda-custom-command to pick out a set of tags, all of which have > NEXT as a todo-type, and which either have no scheduled date, OR which > have a scheduled or deadline date less than or equal to 1 month in the > future. > > For example, show lines with > > NEXT and (Home | LaptopH | DIY) > > where either there is no scheduled (or perhaps, deadline) date OR > > Scheduled Date <= today + 1 month > > My thinking on this is that sometimes I have next actions (such as > cutting my pampas grass every january), which would be set up like this: > > *** NEXT Cut pampass grass :DIY: > SCHEDULED: <2009-01-12 Thu> > > My current setup uses this: > > ("h" "Home Stuff (Next)" > ((tags "Home//NEXT" nil) > (tags "DIY//NEXT" nil) > (tags "LaptopH//NEXT" nil) > nil) > > The problem at the moment is that it shows up all year in my Home Stuff > (Next) list (which searches for Home|LaptopH|DIY with NEXT todotypes), > but I only want it to start showing up about a month before the date I > have decided I need to do it. At the moment, NEXT items which I will > need to do, but which I can't do anything about until nearer the time, > clutter up my action lists. > > Is there any way to do this ? Hi Pete, For this do something like the following: Set a deadline date on *** NEXT Cut pampass grass :DIY: DEADLINE: <2009-01-12 Thu> and (setq org-agenda-todo-ignore-with-date t) This keeps all tasks with a schedules or deadline date out of the list of tasks when searching for next tasks and by default deadlines show up on the agenda 30 days before they need to be done. I find I'm using DEADLINE: a lot more then SCHEDULED: in my tasks. In this case your custom agenda command to match NEXT tasks will not list the tasks with dates (ever) and those tasks will show up on the agenda 30 days before they need to be complete. You can control when they show up individually using dates such as DEADLINE: <2009-01-12 Thu -60d> This works great for me. Regards, Bernt