From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thierry Banel Subject: Re: table and field reference a la OO/LO Date: Sun, 23 Oct 2016 18:45:53 +0200 Message-ID: <580CE941.4070409@free.fr> References: <87k2czja8v.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1byLuH-0006Fk-Ug for emacs-orgmode@gnu.org; Sun, 23 Oct 2016 12:45:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1byLuH-0007RV-4C for emacs-orgmode@gnu.org; Sun, 23 Oct 2016 12:45:57 -0400 Received: from smtp5-g21.free.fr ([2a01:e0c:1:1599::14]:34265) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1byLuG-0007Q5-Sr for emacs-orgmode@gnu.org; Sun, 23 Oct 2016 12:45:57 -0400 Received: from [IPv6:2a01:e35:2e21:def0:3c4a:5e88:5115:2ed4] (unknown [IPv6:2a01:e35:2e21:def0:3c4a:5e88:5115:2ed4]) by smtp5-g21.free.fr (Postfix) with ESMTP id 57A3A5FFD2 for ; Sun, 23 Oct 2016 18:45:54 +0200 (CEST) In-Reply-To: <87k2czja8v.fsf@mat.ucm.es> 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" To: emacs-orgmode@gnu.org Le 23/10/2016 18:33, Uwe Brauer a =E9crit : > Hi > > What I still missing in the otherwise excellent table/spreadsheet is a > sort of coordinate system which would easily allow me to find the colum= n > and line number. > I mean something like this. > > | 1/A | B | C | D | > | 2 | 200 | 10 | 190 | > | 3 | | | | > #+TBLFM: $4=3D@2$2-@2$3 > > Which would allow be to have also $4=3DB2-C2 in the input bar. > > For the lines, I sometimes use an indirect buffer and turn on > linum-mode > > But what could I do for the columns? > > Thanks > > Uwe Brauer=20 > > Maybe you can try C-c } org-table-toggle-coordinate-overlays First outline the header (C-c -): | 1/A | B | C | D | |-----+-----+----+-----| | 2 | 200 | 10 | 190 | | 3 | | | | After C-c } rows and columns coordinates are shown: | 1| 1/A | B | C | D | |I*1 |$1---+$2---+$3--+$4---| | 2| 2 | 200 | 10 | 190 | | 3| 3 | | | |