From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id yHM3N7CNj18FLAAA0tVLHw (envelope-from ) for ; Wed, 21 Oct 2020 01:24:00 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id 0O9IM7CNj18EWAAA1q6Kng (envelope-from ) for ; Wed, 21 Oct 2020 01:24:00 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 1FC90940704 for ; Wed, 21 Oct 2020 01:24:00 +0000 (UTC) Received: from localhost ([::1]:42750 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kV2r7-0005uQ-NF for larch@yhetil.org; Tue, 20 Oct 2020 21:23:57 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45282) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kV2hu-00078B-3g for emacs-orgmode@gnu.org; Tue, 20 Oct 2020 21:14:26 -0400 Received: from mail1.protonmail.ch ([185.70.40.18]:43197) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kV2hr-0005Xf-2B for emacs-orgmode@gnu.org; Tue, 20 Oct 2020 21:14:25 -0400 Date: Wed, 21 Oct 2020 01:14:10 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lambda.cx; s=protonmail; t=1603242859; bh=LKYVtYGDK6P6XZMPxyrOAS/qgIHX8y4a08/Xn7dzBaE=; h=Date:To:From:Reply-To:Subject:From; b=ijhJkjB6pzJj8c1C/+rK970A0B5voPU6XED7S/RhWxVTmfZ9xaulSZKWV5nqPFleg 2fVdBpirkG+zX1z5GlKg1sOPf00Lt7DmPkyk57k2u+DFprdM3sfas57PrjaOrgdvd2 5mX1F5ppWeivYUV906+wuaXoF7ZcpiJSWc8FY6MQ= To: "emacs-orgmode@gnu.org" From: Dante Catalfamo Subject: =?utf-8?Q?Bug:_Can=E2=80=99t_assign_to_hline_relative_reference?= Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.40.18; envelope-from=dante@lambda.cx; helo=mail1.protonmail.ch X-detected-operating-system: by eggs.gnu.org: First seen = 2020/10/20 21:14:20 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Dante Catalfamo Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=pass header.d=lambda.cx header.s=protonmail header.b=ijhJkjB6; dmarc=pass (policy=none) header.from=lambda.cx; spf=pass (aspmx1.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Spam-Score: -1.71 X-TUID: efcHFfyvHCIL Hello, I'm trying to create a table where the third column between two hlines is s= et by a formula referencing the second column. Here is an example: | a | b | c | |-------+-------+--------| | row 1 | 12.00 | 144.00 | | row 2 | | 23.00 | |-------+-------+--------| | sum | 12.00 | 167.00 | #+TBLFM: @I$3..II$3=3Dif($2 !=3D 0, 12*$2, $3);%.2f::@4$2=3Dvsum(@I..II);%.= 2f::@4$3=3Dvsum(@I..II);%.2f When I try to calculate this table however, I get the error "Can=E2=80= =99t assign to hline relative reference". Why is this now allowed? This seems like a fairly mundane use of a table to= me. It is explicitly disabled in the source, but without explanation, and = searching the mailing list doesn't turn up many answers. Is there a recommended way to handle a situation like this? Could this feature be fixed? Thank you, Dante