From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gabriel Duven Subject: Custom agenda 'tags-todo' sorting by scheduled data note working Date: Fri, 05 Feb 2016 10:01:05 +0100 Message-ID: <90994b100f694c8709cd89223a086425@posteo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50994) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRcGR-0002Ec-Gf for emacs-orgmode@gnu.org; Fri, 05 Feb 2016 04:01:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aRcGO-0002Gg-87 for emacs-orgmode@gnu.org; Fri, 05 Feb 2016 04:01:15 -0500 Received: from mout01.posteo.de ([185.67.36.65]:40951) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aRcGO-0002GP-25 for emacs-orgmode@gnu.org; Fri, 05 Feb 2016 04:01:12 -0500 Received: from dovecot03.posteo.de (dovecot03.posteo.de [172.16.0.13]) by mout01.posteo.de (Postfix) with ESMTPS id 271C420993 for ; Fri, 5 Feb 2016 10:01:06 +0100 (CET) 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@gnu.org Hi guys, I created a custom agenda view with tags-todo, which I like to sort by scheduled date. (add-to-list 'org-agenda-custom-commands '("u" "Next actions" tags-todo "+PRIORITY=\"A\"" ((org-agenda-overriding-header "Critical") (org-agenda-prefix-format " %-5:c") (org-agenda-sorting-strategy '(scheduled-down)) (org-agenda-todo-ignore-scheduled 'future) (org-agenda-tags-todo-honor-ignore-options t))) ) But sorting comes out wrong: It's not sorted by the scheduled date. In fact, it's not sorted at all, but seems to keep order of org-agenda-files. Anybody help? Thanks a lot in advace!! Orgmode is great :)