From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juan Pechiar Subject: Re: horizontal rules in table confuse org-table-iterate Date: Mon, 7 Jan 2019 14:35:57 -0300 Message-ID: <20190107173557.GA9594@soloJazz.com> References: <87d0p8tru2.fsf@cert.kernkonzept.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([209.51.188.92]:60057) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ggZMC-0004UG-Uf for emacs-orgmode@gnu.org; Mon, 07 Jan 2019 13:10:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ggZM7-0004VU-F5 for emacs-orgmode@gnu.org; Mon, 07 Jan 2019 13:10:34 -0500 Received: from gproxy9-pub.mail.unifiedlayer.com ([69.89.20.122]:39630) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ggYp2-0000pF-HR for emacs-orgmode@gnu.org; Mon, 07 Jan 2019 12:36:20 -0500 Received: from cmgw11.unifiedlayer.com (unknown [10.9.0.11]) by gproxy9.mail.unifiedlayer.com (Postfix) with ESMTP id 6BE441E09DC for ; Mon, 7 Jan 2019 10:36:01 -0700 (MST) Content-Disposition: inline In-Reply-To: <87d0p8tru2.fsf@cert.kernkonzept.com> 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: Hendrik Tews Cc: emacs-orgmode@gnu.org Hi Hendrik, Everything above the first hline is considered a table heading, and is therefore not included in calculations. This is explained in the docs: https://orgmode.org/manual/Updating-the-table.html On Mon, Jan 07, 2019 at 04:23:01PM +0100, Hendrik Tews wrote: > org-table-iterate does not update tables for me. In the following > table: > > | 1 | 1 | > | 2 | 2 | > |---+---| > | 3 | 4 | > #+TBLFM: $2=$1+1::@3$1=vsum(@1..@2) > > M-x org-table-iterate does not update the table, although I was > expecting a 2 in cell @1$2. If I delete the horizontal rule, the > table is updated. Am I doing something wrong?