From mboxrd@z Thu Jan 1 00:00:00 1970 From: AW Subject: Format a whole column using ";%.2f" in orgtbl? Date: Fri, 15 Jun 2012 16:34:08 +0200 Message-ID: <30475045.6Ox6BBrYdW@linux-nyil.site> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:37337) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SfXbY-00055M-0a for emacs-orgmode@gnu.org; Fri, 15 Jun 2012 10:34:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SfXbR-0003ZP-LS for emacs-orgmode@gnu.org; Fri, 15 Jun 2012 10:34:27 -0400 Received: from mailout04.t-online.de ([194.25.134.18]:36098) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SfXbR-0003Z1-F2 for emacs-orgmode@gnu.org; Fri, 15 Jun 2012 10:34:21 -0400 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 Hi, I'm using radiotables and would like to get all numbers of column 1 with two digits after the decimal separator. My example below leads to an error, but it may explain what I'd like to receive: Input: | 100 | Value | | 150 | Value | #+TBLFM: $1=%s;%.2f Desired outoput: | 100.00 | Value | | 150.00 | Value | #+TBLFM: $1=%s;%.2f I also tried to use :fmt (1 %s;%.2f) while exporting to LaTeX, but in vain. Regards, Alexander