From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dominic Surano Subject: Re: Properties in agenda view Date: Tue, 4 Nov 2014 17:14:52 +0000 (UTC) Message-ID: References: <87vbmv8dqt.fsf@tsmithe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlhhH-0006O0-1t for emacs-orgmode@gnu.org; Tue, 04 Nov 2014 12:15:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XlhhA-00077f-QK for emacs-orgmode@gnu.org; Tue, 04 Nov 2014 12:15:11 -0500 Received: from plane.gmane.org ([80.91.229.3]:44601) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XlhhA-00075S-KL for emacs-orgmode@gnu.org; Tue, 04 Nov 2014 12:15:04 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Xlhh9-0006Lt-CX for emacs-orgmode@gnu.org; Tue, 04 Nov 2014 18:15:03 +0100 Received: from 141.248.2.129 ([141.248.2.129]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 04 Nov 2014 18:15:03 +0100 Received: from sk8ingdom by 141.248.2.129 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 04 Nov 2014 18:15:03 +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@gnu.org Toby St Clere Smithe tsmithe.net> writes: > > Hi all, > > How might I adjust the agenda view so that as well as displaying the > dates and names of entries, some property / properties of my choosing > are displayed? For instance, I have entries with a "LOCATION" property, > and would like to see that in the agenda view. > > Cheers, > > Toby > This can be done with custom agenda commands using tables. Something like this should work: (setq org-agenda-custom-commands '(("1" . "Custom sorted tables") ("1t" agenda "Tasks agenda table (active only)" ((org-agenda-skip-function '(org-agenda-skip-entry-if 'nottodo '("TODO" "WAITING" "CANCELLED" "DELEGATED" "DONE"))) (org-agenda-overriding-columns-format "%75ITEM %20DEADLINE %100Location") (org-agenda-view-columns-initially t)))) This works with tasks that have the following format: * TODO Go Grocery Shopping DEADLINE: <2014-11-04 Tue> :PROPERTIES: :Location: Trader Joe's :END: The above example is for sorted agenda. This can also be accomplished for unsorted task lists.