Re: [O] Determine min/max values in a table

2017-08-05 Thread Karl Voit
* Adam Porter wrote: > Thierry Banel writes: > >> Alternatively you have the orgtbl-aggregate package available on Melpa. >> >> #+BEGIN: aggregate :table "myvalues" :cols "min(Values) max(Values) >> mean(Values)" >> >> | min(Values) | max(Values) |

Re: [O] Determine min/max values in a table

2017-08-03 Thread Adam Porter
Thierry Banel writes: > Alternatively you have the orgtbl-aggregate package available on Melpa. > > #+BEGIN: aggregate :table "myvalues" :cols "min(Values) max(Values) > mean(Values)" > > | min(Values) | max(Values) | mean(Values) | >

Re: [O] Determine min/max values in a table

2017-08-02 Thread Thierry Banel
Le 02/08/2017 14:07, Karl Voit a écrit : > Hi! > > How can I determine minimum and/or maximum value of a table? > > Here is my example: > > #+NAME: myvalues > | Values | > || > | 4 | > | 2 | > | 3 | > | 7 | > | 5 | > | 6 | > > | Min| Max| Average |

[O] Determine min/max values in a table

2017-08-02 Thread Karl Voit
Hi! How can I determine minimum and/or maximum value of a table? Here is my example: #+NAME: myvalues | Values | || | 4 | | 2 | | 3 | | 7 | | 5 | | 6 | | Min| Max| Average | First | Last | |++-+---+--| | #ERROR |