Hi Mark,

How about using an elisp babel block, with tabular results?  Something
like (tested only very lightly):

#+BEGIN_SRC elisp :results table
  (cons
   (list "Header A" "Header B")
   (cons 'hline
         (org-map-entries
          (lambda ()
            (list
             (princ (org-entry-get (point) "FOO"))
             (princ (identity (org-entry-get (point) "BAR"))))))))
#+END_SRC

Replace ‘identity’ with your desired lisp-level processing.

-- 
Aaron Ecay

Reply via email to