emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] How to put a Greek sigma into the spreadsheet?


From: Michael Brand
Subject: Re: [O] How to put a Greek sigma into the spreadsheet?
Date: Mon, 3 Jun 2013 14:18:33 +0200

Hi Marcin

On Mon, Jun 3, 2013 at 12:53 PM, Marcin Borkowski <address@hidden> 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

[Prev in Thread] Current Thread [Next in Thread]