Hi Marcin

On Mon, Jun 3, 2013 at 12:53 PM, Marcin Borkowski <mb...@wmi.amu.edu.pl> wrote:
> basically the subject has it.  While :=string("asdf")
> works, :=string("Σ") does not.  I suspect the reason is that this is
> not an ASCII symbol.  Is there a way to get around this problem?

The function "string" of Calc does not support characters above 127,
see towards the end of
(info "(calc) Strings")
or
http://www.gnu.org/software/emacs/manual/html_node/calc/Strings.html

If I understand your example you can use just

| item | value |
|------+-------|
| a    |     1 |
| b    |     2 |
|------+-------|
| ∑    |     3 |
#+TBLFM: @>$2 = vsum(@I..@>>)

or

| item | value |
|------+-------|
| a    |     1 |
| b    |     2 |
|------+-------|
|      | ∑ = 3 |
#+TBLFM: @>$2 = vsum(@I..@>>); ∑ = %d

Michael

Reply via email to