From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: How to put a Greek sigma into the spreadsheet? Date: Mon, 3 Jun 2013 14:18:33 +0200 Message-ID: References: <20130603125334.03dffe9a@aga-netbook> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50383) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjTif-0001PM-M1 for emacs-orgmode@gnu.org; Mon, 03 Jun 2013 08:18:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UjTie-0007wG-4p for emacs-orgmode@gnu.org; Mon, 03 Jun 2013 08:18:37 -0400 Received: from mail-la0-x231.google.com ([2a00:1450:4010:c03::231]:46201) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UjTid-0007vo-UU for emacs-orgmode@gnu.org; Mon, 03 Jun 2013 08:18:36 -0400 Received: by mail-la0-f49.google.com with SMTP id fp13so3374057lab.36 for ; Mon, 03 Jun 2013 05:18:34 -0700 (PDT) In-Reply-To: <20130603125334.03dffe9a@aga-netbook> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Marcin Borkowski Cc: Org-mode mailing list Hi Marcin On Mon, Jun 3, 2013 at 12:53 PM, Marcin Borkowski wr= ote: > basically the subject has it. While :=3Dstring("asdf") > works, :=3Dstring("=CE=A3") 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 | |------+-------| | =E2=88=91 | 3 | #+TBLFM: @>$2 =3D vsum(@I..@>>) or | item | value | |------+-------| | a | 1 | | b | 2 | |------+-------| | | =E2=88=91 =3D 3 | #+TBLFM: @>$2 =3D vsum(@I..@>>); =E2=88=91 =3D %d Michael