From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: Table formula to convert hex to dec Date: Sun, 24 Jul 2011 18:39:22 +0200 Message-ID: References: <20110724080054.GB16388@x201> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60466) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ql1i9-0000Lo-8O for emacs-orgmode@gnu.org; Sun, 24 Jul 2011 12:39:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ql1i8-0000VY-9X for emacs-orgmode@gnu.org; Sun, 24 Jul 2011 12:39:25 -0400 Received: from mail-ww0-f41.google.com ([74.125.82.41]:49037) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ql1i8-0000VN-51 for emacs-orgmode@gnu.org; Sun, 24 Jul 2011 12:39:24 -0400 Received: by wwi14 with SMTP id 14so781707wwi.0 for ; Sun, 24 Jul 2011 09:39:23 -0700 (PDT) In-Reply-To: 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: emacs-orgmode@gnu.org On Sun, Jul 24, 2011 at 11:52, Michael Brand wrote: > It would be nice to have not only "N" for the Org table formula mode > string like now but also optionally all possible Emacs Calc radix, so > the above would be simply (does not work yet): > | 16#10 | 16 | 16#10 | > #+TBLFM: $2 = $1 :: $3 = $2; N16# Looking at Nick's solution - this is already available for "8#"/"16#" with the Org table formula mode string "%o"/"%x": | 16#10 | 16 | 16#10 | #+TBLFM: $2 = $1 :: $3 = $2; 16#%x Michael