From mboxrd@z Thu Jan 1 00:00:00 1970 From: Seweryn Kokot Subject: org tables - modified field Date: Fri, 2 Jul 2010 08:27:11 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=37013 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OUban-0007ZB-UU for emacs-orgmode@gnu.org; Fri, 02 Jul 2010 04:27:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OUbam-0007tG-OA for emacs-orgmode@gnu.org; Fri, 02 Jul 2010 04:27:25 -0400 Received: from lo.gmane.org ([80.91.229.12]:60056) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OUbam-0007t5-HS for emacs-orgmode@gnu.org; Fri, 02 Jul 2010 04:27:24 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OUbai-0003bq-I3 for emacs-orgmode@gnu.org; Fri, 02 Jul 2010 10:27:20 +0200 Received: from 139.191.131.39 ([139.191.131.39]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 Jul 2010 10:27:20 +0200 Received: from sewkokot by 139.191.131.39 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 02 Jul 2010 10:27:20 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I have the following table #+TBLNAME: table_three |--------+--------| | 1 | 2 | |--------+--------| | 2.00 | *4.00* | | *4.00* | #ERROR | |--------+--------| #+TBLFM: @2$1=2*@1$1;%.2f::@2$2=2*@1$2;*%.2f*::@3$1=2*@2$1;*%.2f*::@3$2=2*@2 $2;*%.2f* in which I would like to have some fields bold in org buffer and latex export \begin{center} \begin{tabular}{rl} \hline 1 & 2 \\ \hline 2.00 & \textbf{4.00} \\ \textbf{4.00} & \#ERROR \\ \hline \end{tabular} \end{center} However, since the field B3 refers to the field B2 which is not exactly a number, I get an error. Would it be possible to reuse the field B2 in another formula, somehow? Best regards, Seweryn