Hi Thierry
On Tue, Oct 28, 2014 at 10:02 AM, abonnements
wrote:
> #+call: gen(A)
> #+results: A
> : 10
>
> #+call: gen(B)
> #+results: B
> : 20
>
> Is there a simple mean to aggregate the results in a table, i.e to get
> | A | 10 |
> | B | 20 |
One solution with TBLFM is:
#+BEGIN_SRC emacs-lisp
abonnements writes:
> Hi, thank you for your answer.
>
> Your solution is OK but only for the example I gave (2 or 3
> results). In practice I have about 10 results and the number of them
> may be variable... Furthermore :vars does not work on my version (I
> must use :var x=A :var y=B)...
:var
Hi, thank you for your answer.
Your solution is OK but only for the example I gave (2 or 3 results). In
practice I have about 10 results and the number of them may be variable...
Furthermore :vars does not work on my version (I must use :var x=A :var y=B)...
Ta.
Thierry
Hello,
/ I have so
abonnements writes:
Hello,
> I have somethink like that
>
> #+call: gen(A)
> #+results: A
> : 10
>
> #+call: gen(B)
> #+results: B
> : 20
>
> Is there a simple mean to aggregate the results in a table, i.e to get
> | A | 10 |
> | B | 20 |
>
> I think some lisp can do that but as a beginner... bu