From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Welle Subject: recalculate tables Date: Thu, 25 Aug 2016 13:23:12 +0200 Message-ID: <87mvk12iu7.fsf@luisa.c0t0d0s0.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcskl-0002Nu-NZ for emacs-orgmode@gnu.org; Thu, 25 Aug 2016 07:23:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bcskf-0001iJ-Mb for emacs-orgmode@gnu.org; Thu, 25 Aug 2016 07:23:22 -0400 Received: from mout.gmx.net ([212.227.17.21]:65211) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bcskf-0001hg-CM for emacs-orgmode@gnu.org; Thu, 25 Aug 2016 07:23:17 -0400 Received: from stella.c0t0d0s0.de ([88.66.15.139]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0MPqtK-1bXuwS0wwU-004x9R for ; Thu, 25 Aug 2016 13:23:14 +0200 Received: from Stella (stella.c0t0d0s0.de [192.168.42.1]) by stella.c0t0d0s0.de (Postfix) with ESMTP id 48F40C45BB for ; Thu, 25 Aug 2016 13:23:12 +0200 (CEST) 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 Hello, in a table like the following C-u M-x org-table-recalculate fills the third column as expected: |---+---+----| | 3 | 4 | | #+TBLFM: $3=$2-$1 But if the table finishes with a line, that doesn't work anymore: |---+---+----| | 3 | 4 | | |---+---+----| #+TBLFM: $3=$2-$1 Then if I change the table to the following, recalculation works again: | | | | |---+---+----| | 3 | 4 | | |---+---+----| #+TBLFM: $3=$2-$1 Is that intended behaviour? Regards hmw