Re: [O] date next year

2013-12-23 Thread Erik Hetzner
At Fri, 20 Dec 2013 12:34:43 + (UTC),
Rene wrote:
> 
> How can I set org-agenda-custom-commands so that I can get the tasks past a
> date in the coming year?
> 
> Suppose I'm interested in things past next september.  This
> 
>   ("y"
>"Next year's appointments"
>tags "TIMESTAMP>=\"<2014-09-01>\"")
> 
> works alright as long as we are before that date but won't work anymore next
> october.  I would have to modify my org config file each year.
> 
> Is there a generic way to indicate "next year"?
> 
> Thanks.

Hi Rene,

I don’t think there is a generic way, but you can use something like
this for your agenda view:

  ("y"
   "Next year's appointments"
   tags (format "TIMESTAMP>=\"<%s-09-01>\""  (+ 1 (calendar-extract-year 
(calendar-current-date)

best, Erik

-- 
Sent from my free software system .



Re: [O] date next year

2013-12-22 Thread Rene
Samuel Wales  gmail.com> writes:

> 
> +1y?
> 
> On 12/20/13, Rene  yahoo.com> wrote:
> > How can I set org-agenda-custom-commands so that I can get the tasks past a
> > date in the coming year?
> >
> > Suppose I'm interested in things past next september.  This
> >
> > ("y"
> >  "Next year's appointments"
> >  tags "TIMESTAMP>=\"<2014-09-01>\"")

Actually, I want the "y" custom command to get me the tasks scheduled past a
coming date.  How to define a date like "the next september 1st"?

Is it possible to do so?




Re: [O] date next year

2013-12-20 Thread Samuel Wales
+1y?

On 12/20/13, Rene  wrote:
> How can I set org-agenda-custom-commands so that I can get the tasks past a
> date in the coming year?
>
> Suppose I'm interested in things past next september.  This
>
>   ("y"
>"Next year's appointments"
>tags "TIMESTAMP>=\"<2014-09-01>\"")
>
> works alright as long as we are before that date but won't work anymore
> next
> october.  I would have to modify my org config file each year.
>
> Is there a generic way to indicate "next year"?
>
> Thanks.
>
>
>


-- 
The Kafka Pandemic: http://thekafkapandemic.blogspot.com

The disease DOES progress.  MANY people have died from it.  ANYBODY can get it.

Denmark: free Karina Hansen NOW.



[O] date next year

2013-12-20 Thread Rene
How can I set org-agenda-custom-commands so that I can get the tasks past a
date in the coming year?

Suppose I'm interested in things past next september.  This

("y"
 "Next year's appointments"
 tags "TIMESTAMP>=\"<2014-09-01>\"")

works alright as long as we are before that date but won't work anymore next
october.  I would have to modify my org config file each year.

Is there a generic way to indicate "next year"?

Thanks.