From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Martin Beck" Subject: How to include past deadlines and scheduled TODOs in an Agenda? Date: Mon, 13 Jan 2014 17:35:52 +0100 (CET) Message-ID: Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55373) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2kUc-0005lk-Dc for emacs-orgmode@gnu.org; Mon, 13 Jan 2014 11:36:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2kUT-0000bR-IA for emacs-orgmode@gnu.org; Mon, 13 Jan 2014 11:36:02 -0500 Received: from mout.web.de ([212.227.15.3]:65185) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2kUT-0000b8-9B for emacs-orgmode@gnu.org; Mon, 13 Jan 2014 11:35:53 -0500 Received: from 3capp-webde-bs36.server.lan ([172.19.170.36]) by mriweb.server.lan (mriweb002) with ESMTP (Nemesis) id 0Lotoj-1VSJ0t0VsB-00gsEz for ; Mon, 13 Jan 2014 17:35:52 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-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-mailinglist
In a block agenda, I want to list all todos with a deadline up to the current day.
 
I tried this block, but it only gives those that are due today, not before today:
 
(agenda "" ((org-agenda-overriding-header "Critical Now") (org-agenda-entry-types (quote (:deadline :deadline*))) (org-agenda-sorting-strategy (quote (deadline-down priority-down))) (org-agenda-time-grid nil) (org-deadline-warning-days 0) (org-agenda-span (quote day))))
 
Maybe there is an option in the background which filters out the older todos?
 
HOw can I solve that?
 
Kind regards
 
Martin