From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos <ndokos@gmail.com> Subject: Re: How to create agenda which ignores headings with deadline/scheduled dates older than 3 months Date: Mon, 30 Mar 2015 11:02:25 -0400 Message-ID: <87oana34vy.fsf@alphaville.usersys.redhat.com> References: <trinity-9116c269-d324-4f9c-a032-4a4b8bb87a8e-1427725835797@3capp-webde-bs35> Mime-Version: 1.0 Content-Type: text/plain Return-path: <emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org> Received: from eggs.gnu.org ([2001:4830:134:3::10]:42870) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <geo-emacs-orgmode@m.gmane.org>) id 1YcbDD-00008q-GH for emacs-orgmode@gnu.org; Mon, 30 Mar 2015 11:02:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <geo-emacs-orgmode@m.gmane.org>) id 1YcbD6-000237-Vj for emacs-orgmode@gnu.org; Mon, 30 Mar 2015 11:02:47 -0400 Received: from plane.gmane.org ([80.91.229.3]:51988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <geo-emacs-orgmode@m.gmane.org>) id 1YcbD6-00022x-PP for emacs-orgmode@gnu.org; Mon, 30 Mar 2015 11:02:40 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from <geo-emacs-orgmode@m.gmane.org>) id 1YcbD2-0000DN-Nr for emacs-orgmode@gnu.org; Mon, 30 Mar 2015 17:02:36 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <emacs-orgmode@gnu.org>; Mon, 30 Mar 2015 17:02:36 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for <emacs-orgmode@gnu.org>; Mon, 30 Mar 2015 17:02:36 +0200 List-Id: "General discussions about Org-mode." <emacs-orgmode.gnu.org> List-Unsubscribe: <https://lists.gnu.org/mailman/options/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=unsubscribe> List-Archive: <http://lists.gnu.org/archive/html/emacs-orgmode> List-Post: <mailto:emacs-orgmode@gnu.org> List-Help: <mailto:emacs-orgmode-request@gnu.org?subject=help> List-Subscribe: <https://lists.gnu.org/mailman/listinfo/emacs-orgmode>, <mailto:emacs-orgmode-request@gnu.org?subject=subscribe> Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org [Not sure why, but quoting the OP's message did not work - I had to do it by hand - I wonder if the problem is with the message or my setup: if someone could verify, I'd appreciate it.] "Martin Beck" <Elwood151@web.de> writes: > how can I set up an agenda view in org-mode which does NOT show old > entries which contain scheduled or deadline dates older than 3 months? C-h v org-agenda-todo-ignore-timestamp RET C-h v org-agenda-todo-ignore-scheduled RET C-h v org-agenda-todo-ignore-deadlines RET <quote> This variable can also have an integer as a value. If positive (N), todos with a timestamp N or more days in the future will be ignored. If negative (-N), todos with a timestamp N or more days in the past will be ignored. If 0, todos with a timestamp either today or in the future will be ignored. For example, a value of -1 will exclude todos with a timestamp in the past (yesterday or earlier), while a value of 7 will exclude todos with a timestamp a week or more in the future. </quote> Nick