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