From mboxrd@z Thu Jan 1 00:00:00 1970 From: Seweryn Kokot Subject: problem in highlighting fields in a remote table Date: Thu, 1 Jul 2010 14:23:19 +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=41016 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OUKfy-0006n9-PB for emacs-orgmode@gnu.org; Thu, 01 Jul 2010 10:23:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OUKfy-0006w6-2L for emacs-orgmode@gnu.org; Thu, 01 Jul 2010 10:23:38 -0400 Received: from lo.gmane.org ([80.91.229.12]:52473) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OUKfx-0006vx-RA for emacs-orgmode@gnu.org; Thu, 01 Jul 2010 10:23:38 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OUKfo-0006e9-VE for emacs-orgmode@gnu.org; Thu, 01 Jul 2010 16:23:28 +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 ; Thu, 01 Jul 2010 16:23:28 +0200 Received: from sewkokot by 139.191.131.39 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 01 Jul 2010 16:23:28 +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 two tables - the second one refers with formulas to the first table. #+TBLNAME: table_one |---+---| | 1 | 2 | |---+---| | 3 | 4 | |---+---| #+TBLNAME: table_two |---+---| | 1 | 2 | |---+---| | 6 | 8 | |---+---| #+TBLFM: @2$1=2*remote(table_one, A2)::@2$2=2*remote(table_one, B2) Being in the second table and using the C-c ' editing of formulas, refering to a field in the first table with a formula e.g. "A2 = 100*(remote(tblname, A2))" highlights A2 field in the second table and not in the first one. Is it a limitation or a bug? Thank you.