From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: column view summary format Date: Thu, 28 Jul 2011 13:45:29 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60018) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QmP1u-0000Ci-Ta for emacs-orgmode@gnu.org; Thu, 28 Jul 2011 07:45:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QmP1u-0006Zq-2o for emacs-orgmode@gnu.org; Thu, 28 Jul 2011 07:45:30 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:59353) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QmP1t-0006Zh-TE for emacs-orgmode@gnu.org; Thu, 28 Jul 2011 07:45:30 -0400 Received: by wyg36 with SMTP id 36so67653wyg.0 for ; Thu, 28 Jul 2011 04:45:29 -0700 (PDT) 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: Org Mode Hi all I have an issue with the column summary format in this minimal example: #+begin_src org ,#+COLUMNS: %15ITEM %amount(amt){+; %5.1f} ,* section ,** subsection 1 , :PROPERTIES: , :amount: 7.12 , :END: ,** subsection 2 , :PROPERTIES: , :amount: 98.34 , :END: #+end_src For the column view I would like to get an overlay looking like: #+begin_src org ,ITEM | amt | ,* section | 105.5 | ,** subsection 1 | 7.1 | ,** subsection 2 | 98.3 | #+end_src but what happens is: #+begin_src org ,ITEM | amt | ,* section | 105.5 | ,** subsection 1 | 7.12 | ,** subsection 2 | 98.34 | #+end_src Is this a bug or how can I get each number formatted and aligned? Michael