From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juan Pechiar Subject: Re: [bug] spreadsheet does not replace some fields Date: Wed, 20 Jun 2012 10:47:58 -0300 Message-ID: <20120620134758.GB2280@soloJazz.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:36189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ShLGZ-00052m-TR for emacs-orgmode@gnu.org; Wed, 20 Jun 2012 09:48:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ShLGQ-0003Ni-0P for emacs-orgmode@gnu.org; Wed, 20 Jun 2012 09:48:15 -0400 Received: from oproxy8-pub.bluehost.com ([69.89.22.20]:39451) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1ShLGP-0003Lb-GV for emacs-orgmode@gnu.org; Wed, 20 Jun 2012 09:48:05 -0400 Content-Disposition: inline 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: Michael Brand Cc: Org Mode On Wed, Jun 20, 2012 at 02:26:42PM +0200, Michael Brand wrote: > Isn't there a nasty spreadsheet bug? I'm quite confused that it has > not been discovered yet so I start to doubt on my reliability. Hi, Michael. This is a feature, not a bug. >From the manual (section 3.5.6 Column Formulas): If the table contains horizontal separator hlines, everything before the first such line is considered part of the table header and will not be modified by column formulas. So, you need to add a horizontal separator at the top of your table. Otherwise the first 2 lines are considered as headers Regards, .j. > - bug: > | this field is not replaced | 1 | > | this field is not replaced | 2 | > |----------------------------+---| > | 3 | 3 | > #+TBLFM: $1 = $2 > > - last minutes' release_7.8.11-85-g62453c5 > - at least back to release_7.8.09-555-g323836f > - emacs -q, 23.3.1 > > - expected: > | 1 | 1 | > | 2 | 2 | > |---+---| > | 3 | 3 | > #+TBLFM: $1 = $2 > > - this variation works as expected: > | 1 | 1 | > | 2 | 2 | > | 3 | 3 | > #+TBLFM: $1 = $2 > > Michael